Slick cd effect

Does anyone know how to do the drag and spin effect found at this site? Tutorials or source would be much appreciated.

G’lak.

this will start you off

http://www.kirupaforum.com/forums/showthread.php?s=&threadid=29243

Hi,

I guess it’s done with something like this:

record.onPress = function(){
this.firstYMouse = this._ymouse;
this.onMouseMove = function(){
if(this._ymouse>this.firstYmouse){
this._rotation +=15;
} else {
this._rotation -=15;
}
}
}

It would look better if the rotation had a bit of inertia rather than being regular, you can find loads of physics scripts everywhere.

Hope it helps

SHO

here, try this.

cheers everyone.

senocular that forum is pretty good - but do u know how to make it continue spinning the ease to a halt - if you throw it?

:whistle:

much appreciated.

Gab.