I have this sphere that is using a moviematerial, and the
moviematerial has this code on it to make a dot move around wherever
the mouseX or mouseY is at:
// mouse move handler
crossHair.x = mouseX;
crossHair.y = mouseY;
when I run the swf, it works fine, i see the dot moving around, but
when I put it as a material on a sphere, the dot doesnt show up...am i
doing something wrong?
// material creation
earthMat = new MovieMaterial(worldTexture, { lockW:1200, lockH:600,
interactive:true, smooth:true, precision:matPercision, autoUpdate:
true } );
Thanks for your help!