Questions tagged [camera3d]
The camera3d tag has no summary.
6 questions
0 votes
0 answers
24 views
Defining camera settings to optimize the use of a shadowmap texture
In my engine I have the possibility to switch from isometric or first person camera, with a far/close camera point of view. In isometric mode the camera point of view can also be in either the -X or +...
0 votes
0 answers
125 views
Camera Shake Issue in UE5
I'm experiencing unexpected camera behavior while implementing a camera shake effect in my first-person project. After adding the camera shake, the camera is not behaving correctly (the camera is not ...
2 votes
1 answer
104 views
How do I add a function to the sequence of functions which runs pre camera culling in Godot?
In unity you can do: Camera.onPreCull += OnPreCullCamera; void OnPreCullCamera(Camera3D cam){ //... } But in Godot I don't know what the equivalent is. How do you ...