From 5afe78bd9c7e619ebc2dd2fb43d549d16382b51d Mon Sep 17 00:00:00 2001 From: Hendrik Brucker Date: Wed, 9 Aug 2023 18:31:15 +0200 Subject: Clean up/refactor GraphNode and make it more flexible Split GraphNode into GraphElement and GraphNode, add custom titlebar, and adjust theming. --- scene/animation/animation_tree.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'scene/animation/animation_tree.cpp') diff --git a/scene/animation/animation_tree.cpp b/scene/animation/animation_tree.cpp index 2364032863..df6e4fed73 100644 --- a/scene/animation/animation_tree.cpp +++ b/scene/animation/animation_tree.cpp @@ -384,6 +384,14 @@ bool AnimationNode::is_filter_enabled() const { return filter_enabled; } +void AnimationNode::set_closable(bool p_closable) { + closable = p_closable; +} + +bool AnimationNode::is_closable() const { + return closable; +} + bool AnimationNode::is_path_filtered(const NodePath &p_path) const { return filter.has(p_path); } -- cgit v1.2.3