Hi, I have a strange problem . I have an object that extends ObjectContainer3D . in one function I am assigning it's reference to another object of the same kind. Then is the spooky part: When I make the referenced instance =null , the initial referenced Object still resides in memory . Is the passing by reference is different in Away3d. i know for sure that in Any ActionScript Class the following is always true:
var object1:ObjetOne=new ObjectOne(); var object2:ObjectOne= object1 as ObjectOne; object2=null; trace(object1); and you will get NULL !!! So is this different for Away? Thanks
