diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2024-04-16 04:26:52 -0700 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2024-04-16 04:26:52 -0700 |
commit | e83807ef85fdc5d2f2cc83c95fa086f3a7ea5bc4 (patch) | |
tree | 63e0bb4ff08111560a81990f65907f86e2cabf4d /core/math/basis.h | |
parent | 4728ff30c0226b9918b29a6ba494dc61eae87639 (diff) | |
download | redot-engine-e83807ef85fdc5d2f2cc83c95fa086f3a7ea5bc4.tar.gz |
Fix incorrect name of Basis global scale getter
Diffstat (limited to 'core/math/basis.h')
-rw-r--r-- | core/math/basis.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/basis.h b/core/math/basis.h index 79f3bda8f8..918cbc18d4 100644 --- a/core/math/basis.h +++ b/core/math/basis.h @@ -103,7 +103,7 @@ struct _NO_DISCARD_ Basis { Vector3 get_scale() const; Vector3 get_scale_abs() const; - Vector3 get_scale_local() const; + Vector3 get_scale_global() const; void set_axis_angle_scale(const Vector3 &p_axis, real_t p_angle, const Vector3 &p_scale); void set_euler_scale(const Vector3 &p_euler, const Vector3 &p_scale, EulerOrder p_order = EulerOrder::YXZ); |