Hi Community, I want my camera to always see the background as a gradient or texture map I made, no matter how the Angle of view is rotated, the background will not change, what should I do(As in the example, no matter how the Angle rotates, the gradient plane always appears in the Angle)
One way is
scene.add(camera);
...
camera.add(bg);
Thus, your background plane will be a child of the camara and visually won’t change its position when the camera moves. You have to put that background plane far enough though, so the plane won’t hide obects in the scene.
Used this trick here for background gears: OMNIVISOR [mechanical eyeball]
Another way is to use scene.background = some_texture
. The texture here can be RenderTarget
.
1 Like
Thanks, that’s a good trick