|
Is it possible to detect the dimensions of an image loaded through WWW?
(comments are locked)
|
|
The image is a Texture2D, which has width and height properties.
(comments are locked)
|
|
texture width/height should work. Tested with this c# example, gives 320x240: http://unity3d.com/support/documentation/ScriptReference/WWW.html print("Size is " + www.texture.width + " by " + www.texture.height);
(comments are locked)
|
