mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +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:
parent
08c578c54c
commit
5afe78bd9c
26 changed files with 1600 additions and 1537 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue