Home > Blockchain >  How to put object in front of another? (Unity 2d)
How to put object in front of another? (Unity 2d)

Time:05-24

I would like to put the red cube above the gray area like the green one.

I tried pulling it up on the z axis but nothing happens and i found nothing on google but this seems like it should be something easy to do. Help?

CodePudding user response:

Ok so my bad turns out the camera was on the negative side of the z axis so all i had to do was pull it down instead of pulling it up

CodePudding user response:

You need to change the order layer. Definitely more number puts the layer forward.

enter image description here

  • Related