You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
@@ -964,7 +964,7 @@ public:
|
||||
class VisualShaderNodePluginDefaultEditor : public VBoxContainer {
|
||||
GDCLASS(VisualShaderNodePluginDefaultEditor, VBoxContainer)
|
||||
public:
|
||||
void _property_changed(const String &prop, const Variant &p_value, bool p_changing = false) {
|
||||
void _property_changed(const String &prop, const Variant &p_value, const String &p_field, bool p_changing = false) {
|
||||
|
||||
if (p_changing)
|
||||
return;
|
||||
@@ -1014,7 +1014,7 @@ public:
|
||||
}
|
||||
|
||||
static void _bind_methods() {
|
||||
ClassDB::bind_method("_property_changed", &VisualShaderNodePluginDefaultEditor::_property_changed, DEFVAL(false));
|
||||
ClassDB::bind_method("_property_changed", &VisualShaderNodePluginDefaultEditor::_property_changed, DEFVAL(String()), DEFVAL(false));
|
||||
ClassDB::bind_method("_node_changed", &VisualShaderNodePluginDefaultEditor::_node_changed);
|
||||
ClassDB::bind_method("_refresh_request", &VisualShaderNodePluginDefaultEditor::_refresh_request);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user