mirror of
https://github.com/godotengine/godot.git
synced 2025-11-10 02:21:15 +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
|
|
@ -330,6 +330,14 @@ void VisualShaderNode::set_disabled(bool p_disabled) {
|
|||
disabled = p_disabled;
|
||||
}
|
||||
|
||||
bool VisualShaderNode::is_closable() const {
|
||||
return closable;
|
||||
}
|
||||
|
||||
void VisualShaderNode::set_closable(bool p_closable) {
|
||||
closable = p_closable;
|
||||
}
|
||||
|
||||
Vector<VisualShader::DefaultTextureParam> VisualShaderNode::get_default_texture_parameters(VisualShader::Type p_type, int p_id) const {
|
||||
return Vector<VisualShader::DefaultTextureParam>();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue