I’m totally confused about how to use the zOffset. I set it to a really high value (10000), but my object does not appear in front of others.
I decided to search the whole away3d src folders and found zOffset only in Object3D.as
protected var _zOffset:int = 0;
...
public function get zOffset():int {
return _zOffset;
}
public function set zOffset( value:int ):void {
_zOffset = value;
}
That is the only place I found zOffset referenced, I download the whole dev branch as a zip. So if I set zOffset, what will it actually do if that’s the only code that references it? No other code is looking at that value.
Am I missing something, did I not get all the files?