You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Clean up/refactor GraphNode and make it more flexible
Split GraphNode into GraphElement and GraphNode, add custom titlebar, and adjust theming.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user