Godot Version
v4.2.3
Question
I have a 3D space where I can select an object with the camera tweening to focus on it and zoom in/out on that object by tweening the camera closer/further.
I use process to keep the camera focused on objects when they move, but my zoom functionality tries to tween to the location the object was when I pressed the zoom button.
Is there an easy way to smoothly tween onto a moving object? Like I could make the camera a child of the object of focus and it will automatically follow it during zoom tweens but I’m not sure how to do smooth selection. Is there an easy way to update/recalculate a tween with two different position interpolations occurring at the same time?
Sorry if that’s not clear.