Hello, Im new to unity and im having trouble moving my canvas for some reason its locked and i cant seem to figure out why. Any suggestions?
Gotta change the Canvas RenderMode: set it to world space if you want to move it.
https://docs.unity3d.com/Packages/com.unity.ugui@1.0/manual/UICanvas.html#render-modes
You can also make subrectangles (child GameObjects under the Canvas) and anchor them however you like. That’s generally how you move stuff around under a canvas.
Yup - unless the Canvas is a World Space canvas, it is always the size of the entire viewport that it’s being drawn on. You can make objects inside the canvas of different sizes.