Hey guys, i am trying the last svn of Away3D lite, i believe that is
the 1.0.4 ?
Just 2 things about it.
- In the class ObjectContainer3D line 58 ------> this character "Â"
should be removed.
Also, in the class Object3D the function moveForward, moveLeft etc...
+ pitch, roll, yaw have been added.
I think its a good thing, but when i move my object with on of thoses,
the position of the object seem to not be updated and the pivotPoint
for pitch and yaw seem to be always 0, 0, 0;
//ACTUALLY
public function pitch(degrees:Number):void{
rotate(degrees, Vector3D.X_AXIS);
}
public function yaw(degrees:Number):void
{
rotate(degrees, Vector3D.Y_AXIS);
}
public function roll(degrees:Number):void
{
rotate(degrees, Vector3D.Z_AXIS);
}
//WHAT I DID
public function pitch(degrees:Number):void{
rotate(degrees, Vector3D.X_AXIS, position);
}
public function yaw(degrees:Number):void
{
rotate(degrees, Vector3D.Y_AXIS, position);
}
public function roll(degrees:Number):void
{
rotate(degrees, Vector3D.Z_AXIS, position);
}
I need someone more experimented than i am to confirm that.
Hope that help.
Cheers.