Home > Back-end >  How make the textmeshpro text to be in front of rawimage or just image?
How make the textmeshpro text to be in front of rawimage or just image?

Time:04-04

i don't want to make the image transparent but to make the text to be on the image. now the black image is blocking the text.

The canvas is set to screen space overlay.

ui text is blocked by the rawimage/image

CodePudding user response:

(Assuming the text colour is different from the image colour as @alfix suggested) if changing the Z position of the canvas elements doesn't change their render order, reordering them in the hierarchy should. Objects lower in the hierarchy should render on top of items prior to them in the hierarchy.

  • Related