Home > Software engineering >  Making interactable computer screen in game Unity 3D
Making interactable computer screen in game Unity 3D

Time:01-30

I need to do a interactable computer screen in Unity 3D for my game like Streamer's Life Simulator or Internet Cafe Simulator.I used Canvas and tried TextureRenderer but didn't work as well.What systems I should work on for this?

When I tried to use canvas for this it was reversing the text (in attached photo)enter image description here

CodePudding user response:

Please use a plain and try to apply render texture to plain material. It will give the proper output

CodePudding user response:

If your canvas is pointing the wrong side you can rotate the canvas.

On the Rect Transform component rotate the y axis by 180 degrees.

  • Related