You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Fix some gizmo behavior to make more consistent
This commit is contained in:
@@ -2120,7 +2120,7 @@ void Variant::interpolate(const Variant &a, const Variant &b, float c, Variant &
|
||||
}
|
||||
return;
|
||||
case BASIS: {
|
||||
r_dst = Transform3D(*a._data._basis).interpolate_with(Transform3D(*b._data._basis), c).basis;
|
||||
r_dst = a._data._basis->lerp(*b._data._basis, c);
|
||||
}
|
||||
return;
|
||||
case TRANSFORM3D: {
|
||||
|
||||
Reference in New Issue
Block a user