diff options
Diffstat (limited to 'scene/animation/animation_tree_player.h')
| -rw-r--r-- | scene/animation/animation_tree_player.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scene/animation/animation_tree_player.h b/scene/animation/animation_tree_player.h index 7cc96fc1e3..2e44d69aa1 100644 --- a/scene/animation/animation_tree_player.h +++ b/scene/animation/animation_tree_player.h @@ -99,7 +99,7 @@ private: struct Track { uint32_t id; - Node *node; + Object *object; Spatial* spatial; Skeleton *skeleton; int bone_idx; @@ -109,6 +109,8 @@ private: Quat rot; Vector3 scale; + Variant value; + }; |