Browse Source

Merge pull request #1626 from ruffenman/remove-unimplemented-variant-functions

Remove unimplemented static variant functions 'blend' and 'interpolate'…
David Snopek 9 months ago
parent
commit
688ed4b388
1 changed files with 0 additions and 2 deletions
  1. 0 2
      include/godot_cpp/variant/variant.hpp

+ 0 - 2
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);