Hi,
I want to place a PlaneGeometry always at the bottom of the screen (perspective camera), no matter what screen-size. Is there an example, a starting point?
Cheers
b
Hi,
I want to place a PlaneGeometry always at the bottom of the screen (perspective camera), no matter what screen-size. Is there an example, a starting point?
Cheers
b
starting point:
add your camera to the scene graph and place the plane relative to the camera:
scene.add(camera)
camera.add(plane)
plane.position.y = -1
The plane will now “follow” your camera no matter how you move or translate it ( e.g. with orbitControls…)
Cool. How to tell the plane to position the way you suggested when the plane has height 40 or 50 or another height?
@blackInk
Hi!
Would be cool to provide an explanatory picture with the desired result
maybe rotate your plane
plane.rotateX(-Math.PI / 2)