In the newest dev branche (5 day’s old) in tools->utils->TextureUtils.as
the function isPowerOfTwo is private
private static function isPowerOfTwo(value : int) : Boolean
{
return value ? ((value & -value) == value) : false;
}
should be public
Private static isPowerOfTwoSoftware: Away3D 4.x |
||
Arno, Newbie
Posted: 16 January 2012 03:01 PM Total Posts: 25 In the newest dev branche (5 day’s old) in tools->utils->TextureUtils.as the function isPowerOfTwo is private private static function isPowerOfTwo(value : int) : Boolean should be public |