Moving Camera3D dynamically smoothly from one position to another.
Moving Camera3D dynamically smoothly from one position to another.
I have two positions, my cameras, and one from an object. I want to be able to move the camera smoothly from on position to the other. Since the positions are always different, animation players don't work(as far as I know).
Use a Tween. If it's only translation it's very straightforward. If rotation comes into play, you will probably have to use quaternions instead of Euler angles. More info here.
Are these 2D/Script only, because I can't find them when pressing plus to add a new node?
In Godot 4 they're no longer a node. Check the updated docs for how to use them, they work fine in 3D and you can tween any value.