Hello I am fairly new to scripting and making games so I am here asking is their a known script to showing your 3D character in a little window? So like after I make my own Custom character not premade is their a way I can show the character on the Ui on the bottom of the screen?
There is a class called a RenderTexture for this. It is special texture that a Camera can write to, and then you can use that texture elsewhere in your game.
The typical route for what you’re doing is to make a little “stage” off-camera, then put the character on that stage with his own camera pointed at him, framed up just the way you want, including a background. That second camera would render to a RenderTexture, which you could just use in your UI.
That’s also how you do things like video cameras in other rooms, for instance.
1 Like