Godot Version
4.6.2.stable
Question
I'm trying to import a Camera animation/action from Blender to use with Camera3D in Godot. I've animated the camera for a cinematic shot that is tightly timed with character animations, and I want to move that animation over to Godot so I don't have to re-animate/time the camera within the Godot editor. I'm not very experienced with importing/translating stuff into Godot, so any help would be greatly appreciated.
In Blender, the camera has an action 'CameraSceneAnim' that animates the camera's position and rotation.
I export the camera as glTF Binary (.glb), limited to Selected Objects (the camera only), with Animation Mode set to Actions.
In the Godot editor, the file is imported as a Camera3D with an AnimationPlayer holding the animation 'CameraSceneAnim'. If I run the AnimationPlayer in this inherited scene, the imported camera animates as expected.
I wanted to pair this animation to other Camera3Ds made within the Godot editor, so in the inherited AnimationPlayer, I go to Animation > Manage Animations > Make Unique > Save Animation to Resource on Disk and make a CameraSceneAnim.res file to a folder.
I then make a new Node3D scene, an AnimationPlayer child, and a Camera3D as a sibling to the AnimationPlayer. I create a new AnimationLibrary for the AnimationPlayer, load in the CameraSceneAnim.res file as one of the animations, and from here I'm not sure how to set the Camera3D use the new Animation resource to move/rotate. I get a pop-up error "AnimationMixer (at: cutscene_camear.tscn): 'SceneCameraLibrary/CameraSceneAnim', couldn't resolve track: 'Camera'.
How would I set my Camera3D to use the imported animation resource? Or am I going about this in the wrong way?