diff options
author | David Snopek <dsnopek@gmail.com> | 2024-10-30 08:49:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-30 08:49:38 -0500 |
commit | 688ed4b3886ddd30d31825bf5fdba598f2bb9271 (patch) | |
tree | 9af1943e23ef3021cacab1eafcfcfdfe3e4e41b6 | |
parent | 7796fcc89072de8192b2898e6aa08218c6751c0e (diff) | |
parent | 42a35a1852cec7dad37132836955bcd462409fc8 (diff) | |
download | redot-cpp-688ed4b3886ddd30d31825bf5fdba598f2bb9271.tar.gz |
Merge pull request #1626 from ruffenman/remove-unimplemented-variant-functions
Remove unimplemented static variant functions 'blend' and 'interpolate'…
-rw-r--r-- | include/godot_cpp/variant/variant.hpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/godot_cpp/variant/variant.hpp b/include/godot_cpp/variant/variant.hpp index 10aea96..4c5f206 100644 --- a/include/godot_cpp/variant/variant.hpp +++ b/include/godot_cpp/variant/variant.hpp @@ -329,8 +329,6 @@ public: bool booleanize() const; String stringify() const; Variant duplicate(bool deep = false) const; - static void blend(const Variant &a, const Variant &b, float c, Variant &r_dst); - static void interpolate(const Variant &a, const Variant &b, float c, Variant &r_dst); static String get_type_name(Variant::Type type); static bool can_convert(Variant::Type from, Variant::Type to); |