summaryrefslogtreecommitdiffstats
path: root/scene/animation
diff options
context:
space:
mode:
authorGuilherme Sousa <guilherme.sousa1994@gmail.com>2024-10-26 17:56:51 +0200
committerGuilherme Sousa <guilherme.sousa1994@gmail.com>2024-10-26 17:56:51 +0200
commitec62978dd0cf34e96576627393396782fad7e69b (patch)
tree88c6d30f06f7c5042b1a1063849a4dceca8779f4 /scene/animation
parent92e51fca7247c932f95a1662aefc28aca96e8de6 (diff)
downloadredot-engine-ec62978dd0cf34e96576627393396782fad7e69b.tar.gz
Fix non const animation node process function
Diffstat (limited to 'scene/animation')
-rw-r--r--scene/animation/animation_tree.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/animation/animation_tree.h b/scene/animation/animation_tree.h
index d4b7bf31c9..ec5e88b776 100644
--- a/scene/animation/animation_tree.h
+++ b/scene/animation/animation_tree.h
@@ -151,7 +151,7 @@ protected:
GDVIRTUAL1RC(Ref<AnimationNode>, _get_child_by_name, StringName)
GDVIRTUAL1RC(Variant, _get_parameter_default_value, StringName)
GDVIRTUAL1RC(bool, _is_parameter_read_only, StringName)
- GDVIRTUAL4RC(double, _process, double, bool, bool, bool)
+ GDVIRTUAL4R(double, _process, double, bool, bool, bool)
GDVIRTUAL0RC(String, _get_caption)
GDVIRTUAL0RC(bool, _has_filter)