Button on Canvas?

So, I really wanted a button over my canvas, which is easy enough to do in the Drag and Drop. But, how could I do it in the old one?

(Wanted to use the old one because it has some stuff the newer version doesn’t have.)

1 Like

You can have the image of a button and add it as a sprite.

I would have preferred to do this without a sprite. Sadly, it looks like I have to.

1 Like

If it is a simple screen then you can add a button and change the position to absolute which will force the UI to place it on top of other components. You could also change the z-Index to force it to be on top of other components.

See this example of an absolute positioned button on top of a canvas
image

1 Like

Thank you so much! This really helps.

1 Like