summaryrefslogtreecommitdiffstats
path: root/scene
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-10-29 19:26:00 -0500
committerThaddeus Crews <repiteo@outlook.com>2024-10-29 19:26:00 -0500
commit598cfbdfd602b2440c9d516d67c62f8a75dd6df0 (patch)
tree860563ab177ea8a29e0e0079e3b00cf4d8707abc /scene
parent696ca9db3c1aa45a57824783426d595f2d8c03d6 (diff)
parentec62978dd0cf34e96576627393396782fad7e69b (diff)
downloadredot-engine-598cfbdfd602b2440c9d516d67c62f8a75dd6df0.tar.gz
Merge pull request #97020 from GuilhermeGSousa/fix-non-const-anim-node-process
Fix non const animation node `_process` virtual function
Diffstat (limited to 'scene')
-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 8ee80f29ee..eb25a8db1b 100644
--- a/scene/animation/animation_tree.h
+++ b/scene/animation/animation_tree.h
@@ -186,7 +186,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)