Jimmy781
Hey guys ,
I created a plane :
_scene = new Scene();
_scene.CreateComponent<Octree>();
var planeNode = _scene.CreateChild("Plane");
planeNode.Scale = new Vector3(500.0f, 1.0f, 500.0f);
i want to get the actual size of the plane width & height in pixels. Is there any way to do this ?
Thanks