diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-08-31 17:37:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-31 17:37:08 +0200 |
commit | 10aec9057c104b493d74dd3e815439abbac3db69 (patch) | |
tree | 827e4ee8584ee74045c7ee0609bf3d8b054ad670 /core/object/object.cpp | |
parent | f4ec011c29b036d665fcb9c7a09d23f5beee3af3 (diff) | |
parent | 291d3aaabefa86b4e102fa7385bcf7aacd240d72 (diff) | |
download | redot-engine-10aec9057c104b493d74dd3e815439abbac3db69.tar.gz |
Merge pull request #63411 from Calinou/improve-null-object-dictionary-print
Improve null and object printing to avoid confusion with arrays
Diffstat (limited to 'core/object/object.cpp')
-rw-r--r-- | core/object/object.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/object/object.cpp b/core/object/object.cpp index 4f7f55c8b6..33208be539 100644 --- a/core/object/object.cpp +++ b/core/object/object.cpp @@ -811,7 +811,7 @@ String Object::to_string() { _extension->to_string(_extension_instance, &ret); return ret; } - return "[" + get_class() + ":" + itos(get_instance_id()) + "]"; + return "<" + get_class() + "#" + itos(get_instance_id()) + ">"; } void Object::set_script_and_instance(const Variant &p_script, ScriptInstance *p_instance) { |