away3d / away3d-core-fp10

Away3D engine for Flash Player 10

Home Page:http://www.away3d.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Sprite3D.height getter returns width instead of height.

Eketol opened this issue · comments

In Sprite3D.as, line 152:

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

should be:

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