1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-09 12:50:35 +00:00

Partially revert 96780, remove warnings from project/editor settings _get.

This commit is contained in:
bruvzg
2024-10-04 19:09:53 +03:00
parent 3576e840c7
commit 794920b1ff
4 changed files with 54 additions and 62 deletions

View File

@@ -221,7 +221,6 @@ bool EditorSettings::_get(const StringName &p_name, Variant &r_ret) const {
const VariantContainer *v = props.getptr(p_name);
if (!v) {
WARN_PRINT("EditorSettings::_get - Property not found: " + String(p_name));
return false;
}
r_ret = v->variant;