Hi all , im experimentig a bug , when usign Math.random in conjunction with away3d (even when im not using ANY proporties related to the framework).
First example : having a set of planes looking at (0,0,0) , then
var distance:Number = Math.random()*10000000;
myContainer3d.moveBackward(distance);
it result in a strange duplication of my plane ... i get 2 planes for every position i had at the start.
Even setting random duration for tweens :
var _duration=10000 * Math.random();
_percent = Quart.easeOut(t, b, c, _duration);
, result in the same strange error.
Any ideas?
Thanks!