diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2022-07-25 00:15:20 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2022-08-31 15:31:49 +0200 |
commit | 291d3aaabefa86b4e102fa7385bcf7aacd240d72 (patch) | |
tree | ff6a8f88a935e3a0faf89ff06e5a77a6bd562e57 /core/object | |
parent | de5f13e9356c1c075ced91893a67164f062b36bc (diff) | |
download | redot-engine-291d3aaabefa86b4e102fa7385bcf7aacd240d72.tar.gz |
Improve null and object printing to avoid confusion with arrays
- Use different syntax for object printing to avoid confusion with arrays.
- Print null as `<null>` to avoid confusion with a string `"null"`.
- Display `<empty>` in editor resource pickers to avoid confusion
with array-based properties.
Diffstat (limited to 'core/object')
-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) { |