Open GoogleCodeExporter opened 9 years ago
I just took a look at the definition of IsoDisplayObject. Let's take z as
example.
public function set z( value:Number ):void{
if ( !usePreciseValues )
value = Math.round( value );
if ( isoZ != value )
{
oldZ = isoZ;
isoZ = value;
if ( autoUpdate ){
render();
}
}
}
You should set "usePreciseValues" to true so as to skip the rounding part
Original comment by patrick....@gmail.com
on 26 Jan 2012 at 10:34
Original issue reported on code.google.com by
jocke...@gmail.com
on 27 Dec 2011 at 1:09