I currently have a SphereGeometry attached to a Perspective Camera. But when I rotate the camera, the Sphere rotates with the camera which is normal but in my case I do not want that.
Here is what I have:
camera.add(Sphere);
Sphere.position.set (0, -100, 0);
What I want is to attach the sphere to the bottom of the camera but stay in that position. Currently, when I rotate the camera, the Sphere seems to rotate with it so I cannot see it. How can I attach the child object in a way that does not rotate with the camera? Thanks.