take a look at TestImposterNode. Basically it is rendering a Model to a 2d texture which is applied to a Quad (in the class ImposterNode), which you can render ORTHO. Like that you may even animate, … your model.
does it mean that ORTHO queue is intended only to render things like lines and quads? and that, for 3D models, you need special stuff like the ImposterNode? thanks for your acclaration
Ortho mode is not suited for rendering 3D objects. The reason is that there's no depth conversion in the projection matrix given there, so the Z coordinates of all objects are matched into -1, 1 range. If you want to display 3D objects inside a GUI, you can use TextureRenderer to render your object to a texture, then put the texture in your GUI.