I have two tests of the same application source but between two
different branches of Away3D.
In this test I have a 3D object nested inside a ObjectContainer3D.
Here is my axis rotation code:
private function render(event:Event = null):void
{
if(this.alpha > 0)
{
_outerGroup.rotationX = -20; // outer object
padlock.rotationY += 15; // inner object
this._view3D.render();
}
}
Please note how the "_outerGroup.rotationX" an ObjectContainer3D
behaves backwards between these two test urls:
http://www.directresponsemedicine.com/flexsandbox/3DRotationTest/3.0.0/
http://www.directresponsemedicine.com/flexsandbox/3DRotationTest/Flash10/
Also note the difference in Phong Shading