diff options
author | Hendrik Brucker <hendrik.brucker@mail.de> | 2024-02-07 02:37:26 +0100 |
---|---|---|
committer | Hendrik Brucker <hendrik.brucker@mail.de> | 2024-04-04 15:11:00 +0200 |
commit | a81561cbd960d4787ea0dbd68f60f0af67323721 (patch) | |
tree | fa144f4212f9143bd98e753b1a84fb9d6e01b81b /scene/animation/animation_tree.cpp | |
parent | 7a42afbba050822a66ea5b4c620f6db1b98c49af (diff) | |
download | redot-engine-a81561cbd960d4787ea0dbd68f60f0af67323721.tar.gz |
Add GraphFrame and integrate it in VisualShader
Diffstat (limited to 'scene/animation/animation_tree.cpp')
-rw-r--r-- | scene/animation/animation_tree.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/animation/animation_tree.cpp b/scene/animation/animation_tree.cpp index 2d0bd9c258..2df1e81e25 100644 --- a/scene/animation/animation_tree.cpp +++ b/scene/animation/animation_tree.cpp @@ -395,11 +395,11 @@ bool AnimationNode::is_filter_enabled() const { return filter_enabled; } -void AnimationNode::set_closable(bool p_closable) { +void AnimationNode::set_deletable(bool p_closable) { closable = p_closable; } -bool AnimationNode::is_closable() const { +bool AnimationNode::is_deletable() const { return closable; } |