0 votes

I'm trying to create a camera interpolation script that can smooth between multiple camera angles (camera angles are Node3Ds I placed in the scene)

I'm noticing that the rotations for objects NOT IN THE SAME PARENT get seemingly random results.

    temp = Transform;
    temp.basis = new Basis(startPos.Transform.basis.GetRotationQuaternion().Normalized().Slerp(endNode.Basis.GetRotationQuaternion().Normalized(), t));
    Transform = temp;

How can I globally lerp a rotation?

Godot version v4.0.beta5.mono
in Engine by (67 points)

1 Answer

0 votes

I suggest you look at the camera script in this simple addon. It shows very well how to interpolate rotation and also position of a camera in 3d space.
https://godotengine.org/asset-library/asset/739

Just extract it and look for the camera script. You can also just use the addon as is if that's what you are looking for.

by (2,017 points)
Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.