diff options
Diffstat (limited to 'modules/gdscript/tests/scripts/runtime/features/static_variables_other.gd')
-rw-r--r-- | modules/gdscript/tests/scripts/runtime/features/static_variables_other.gd | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/runtime/features/static_variables_other.gd b/modules/gdscript/tests/scripts/runtime/features/static_variables_other.gd new file mode 100644 index 0000000000..7a3b0acca6 --- /dev/null +++ b/modules/gdscript/tests/scripts/runtime/features/static_variables_other.gd @@ -0,0 +1,11 @@ +@static_unload +class_name StaticVariablesOther + +static var perm := 0 + +static var prop := "Hello!": + get: return prop + " suffix" + set(value): prop = "prefix " + str(value) + +func test(): + print("ok") |