diff options
author | George Marques <george@gmarqu.es> | 2024-05-02 15:06:07 -0300 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2024-05-02 15:09:22 -0300 |
commit | 22236380c033a1d441d9b35b4bc1529218d4e39d (patch) | |
tree | 8a380cf8d4b9b1af0a2330a03532ec1b9b68d874 /modules/gdscript/gdscript.h | |
parent | 06d105e268ace265809ae3fac2f17ccea9ff88dd (diff) | |
download | redot-engine-22236380c033a1d441d9b35b4bc1529218d4e39d.tar.gz |
GDScript: Initialize static variables with defaults in-editor
When the script is not marked as `@tool` the static constructor is not
called and thus the variables contain `null` by default. But since some
validated operations requires a valid value, this would cause a crash.
This commit solves this by initializing the static variables with a
default value based on their types in the editor, when they are not
marked as `@tool`, so if some `@tool` script access them, they will have
a valid typed value, avoiding the crash.
Diffstat (limited to 'modules/gdscript/gdscript.h')
-rw-r--r-- | modules/gdscript/gdscript.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/gdscript/gdscript.h b/modules/gdscript/gdscript.h index 7bd68ac0b1..88e7a27ce7 100644 --- a/modules/gdscript/gdscript.h +++ b/modules/gdscript/gdscript.h @@ -169,6 +169,9 @@ private: GDScriptFunction *static_initializer = nullptr; Error _static_init(); +#ifdef TOOLS_ENABLED + void _static_default_init(); // Initialize static variables with default values based on their types. +#endif int subclass_count = 0; RBSet<Object *> instances; |