Set image back of another image

hi
i wanna to add image in my project that must back of another specially image
how can set that?
thank you

you mean to say a two sided image?

IF you mean set the depth sorting order, you can do this on your image object

myImage.setDepth(0); // at the back, and is default
myOtherImage.setDepth(1); // in front

https://photonstorm.github.io/phaser3-docs/Phaser.GameObjects.Components.Depth.html

1 Like

thank you very much friend

1 Like