summaryrefslogtreecommitdiffstats
path: root/core/variant/variant_construct.cpp
diff options
context:
space:
mode:
authorAaron Franke <arnfranke@yahoo.com>2022-11-01 08:11:09 -0500
committerAaron Franke <arnfranke@yahoo.com>2022-11-01 09:28:12 -0500
commit83634119d42595498e42685556a577c12145e20b (patch)
treebdd670ec6732d4cf479f3185806331b16f3f6fc8 /core/variant/variant_construct.cpp
parente6751549cf7247965d1744b8c464f5e901006f21 (diff)
downloadredot-engine-83634119d42595498e42685556a577c12145e20b.tar.gz
Replace Quaternion Euler constructor with `from_euler` method
Diffstat (limited to 'core/variant/variant_construct.cpp')
-rw-r--r--core/variant/variant_construct.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/variant/variant_construct.cpp b/core/variant/variant_construct.cpp
index 3b88dc11ca..ae9727fe79 100644
--- a/core/variant/variant_construct.cpp
+++ b/core/variant/variant_construct.cpp
@@ -141,7 +141,6 @@ void Variant::_register_variant_constructors() {
add_constructor<VariantConstructor<Quaternion, Vector3, double>>(sarray("axis", "angle"));
add_constructor<VariantConstructor<Quaternion, Vector3, Vector3>>(sarray("arc_from", "arc_to"));
add_constructor<VariantConstructor<Quaternion, double, double, double, double>>(sarray("x", "y", "z", "w"));
- add_constructor<VariantConstructor<Quaternion, Vector3>>(sarray("euler_yxz"));
add_constructor<VariantConstructNoArgs<::AABB>>(sarray());
add_constructor<VariantConstructor<::AABB, ::AABB>>(sarray("from"));