summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfoxydevloper <12120644+foxydevloper@users.noreply.github.com>2021-07-19 15:24:04 -0400
committerfoxydevloper <12120644+foxydevloper@users.noreply.github.com>2021-07-19 15:24:04 -0400
commit91bd7b9b2c17392d86b4d0661f59b5246fc28788 (patch)
tree10ce01108aa47bcf8b9dbda44d0139d181eae41d
parentdfc1ec7fb97f38c5e785433cb0fb497dfa8c7e36 (diff)
Remove random prints for some shader actions
-rw-r--r--editor/editor_inspector.cpp1
-rw-r--r--editor/shader_globals_editor.cpp3
2 files changed, 0 insertions, 4 deletions
diff --git a/editor/editor_inspector.cpp b/editor/editor_inspector.cpp
index 5b69da4924..a1b9237609 100644
--- a/editor/editor_inspector.cpp
+++ b/editor/editor_inspector.cpp
@@ -2367,7 +2367,6 @@ void EditorInspector::_property_keyed(const String &p_path, bool p_advance) {
}
void EditorInspector::_property_deleted(const String &p_path) {
- print_line("deleted pressed?");
if (!object) {
return;
}
diff --git a/editor/shader_globals_editor.cpp b/editor/shader_globals_editor.cpp
index eba96e5967..3eda0dff0e 100644
--- a/editor/shader_globals_editor.cpp
+++ b/editor/shader_globals_editor.cpp
@@ -110,7 +110,6 @@ protected:
undo_redo->commit_action();
block_update = false;
- print_line("all good?");
return true;
}
@@ -410,7 +409,6 @@ void ShaderGlobalsEditor::_variable_added() {
}
void ShaderGlobalsEditor::_variable_deleted(const String &p_variable) {
- print_line("deleted " + p_variable);
UndoRedo *undo_redo = EditorNode::get_singleton()->get_undo_redo();
undo_redo->create_action("Add Shader Global Variable");
@@ -439,7 +437,6 @@ void ShaderGlobalsEditor::_bind_methods() {
void ShaderGlobalsEditor::_notification(int p_what) {
if (p_what == NOTIFICATION_VISIBILITY_CHANGED) {
if (is_visible_in_tree()) {
- print_line("OK load settings in globalseditor");
inspector->edit(interface);
}
}