how do i put my 3d character on my 2d home screen?
at the time of debugging it does not appear
So, you can’t really put 3D models directly on a 2D UI screen. There is a trick you can use by parenting a 3D screen on your active camera, check this:
Yes you can, Im doing it currently
Add a SCREEN component and disable the “screen space” so it’s rendered on the 3D space. Place it on front of the main camera, or inside of the camera so it’s visible regardless of where the camera has moved.
Load the 3D model inside of the screen component - you’ll have to scale up x100 since the screen component uses a different scale. Remove “world” layer from the entity and set it to “UI”. Also make sure the camera has the “UI” layer on it.
Now you can ma…
1 Like
Gurki
March 25, 2021, 5:46am
4
does this work for particlesystems too?
Yes, I think so, since it’s being rendered in world space.