You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-12-06 17:25:19 +00:00
AnimationTreePlayer: blend value tracks (closes #2299)
Variant:
- zero() sets a Variant to the appropriate type of zero value
- blend() blends part of one Variant on top of another.
(cherry picked from commit 391ce81c5e)
This commit is contained in:
committed by
Rémi Verschelde
parent
459b914d9c
commit
cafcdb015d
@@ -372,6 +372,8 @@ public:
|
||||
return res;
|
||||
}
|
||||
|
||||
void zero();
|
||||
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);
|
||||
|
||||
struct CallError {
|
||||
|
||||
Reference in New Issue
Block a user