How Can I Turn Over the GUI from front to back using GUI.matrix?

You know, i want to rotate the GUI in 3D space not just in 2D screen space.

Can I turn the GUI over with GUI.matrix ?

1 Answer

1

No, you can’t because the GUI is drawn in an orthographic view. So you never get a perspective look. You can rotate it, but it would just stretch and clip.

If you want 3D menues the menues have to be 3D. NGUI for example is capable of doing this.

thanks @Bunny83