Hello!
I have a skybox which I want to rotate by an axis.
But if I set a value of rotation the skybox doesn’t rotate.
How to rotate the skybox by an axis?
I try:
var texture:BitmapCubeTexture = new BitmapCubeTexture(px, nx, py, ny, pz, nz);
var skybox:SkyBox = new SkyBox(texture);
skybox.rotationY = 10; // doesn't work
Thanks.