away3d / away3d-core-fp10

Away3D engine for Flash Player 10
http://www.away3d.com
33 stars 11 forks source link

Sprite3D.height getter returns width instead of height. #16

Open Eketol opened 12 years ago

Eketol commented 12 years ago

In Sprite3D.as, line 152:

public function get height():Number { return _width; }

should be:

public function get height():Number { return _height; }