diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-09-27 10:04:10 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-09-27 10:04:10 +0200 |
commit | 7562932eb2f863a659136f2f25064c5a4c3e5929 (patch) | |
tree | 4b94c27d8ee72d1de864da49ad2f9b4056393bb2 /scene/animation/animation_tree.cpp | |
parent | 809927862b2efc2ea7830d0f11a5b1bc3a23acb1 (diff) | |
parent | 0c46068af0e9f077d3d68fe1dc647f99a55d7824 (diff) |
Merge pull request #66160 from dpalais/double_time
Use double instead of real_t type for time-related parameters and variables
Diffstat (limited to 'scene/animation/animation_tree.cpp')
-rw-r--r-- | scene/animation/animation_tree.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/animation/animation_tree.cpp b/scene/animation/animation_tree.cpp index bcd52082af..05a4a2d024 100644 --- a/scene/animation/animation_tree.cpp +++ b/scene/animation/animation_tree.cpp @@ -1745,7 +1745,7 @@ Variant AnimationTree::_post_process_key_value(const Ref<Animation> &p_anim, int return p_value; } -void AnimationTree::advance(real_t p_time) { +void AnimationTree::advance(double p_time) { _process_graph(p_time); } |