How to change canvas position in Unity?

See the bit in your canvas inspector about it being “screen space – overlay”?

That means:

This render mode places UI elements on the screen rendered on top of the scene.

And what THAT means, is that you don’t have to worry about where the Canvas and child Text show up in your scene view. When you run the game the UI elements will overlay on the background world objects and it’ll all be fine.

See the bit in your canvas inspector about it being “screen space – overlay”?

That means:

This render mode places UI elements on the screen rendered on top of the scene.

And what THAT means, is that you don’t have to worry about where the Canvas and child Text show up in your scene view. When you run the game the UI elements will overlay on the background world objects and it’ll all be fine.

Source: http://docs.unity3d.com/Manual/UICanvas.html

Leave a Comment