summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/runtime/features/static_variables_load.gd
blob: 8913b02756dc6aa143064a84e126bf3a4cc76f14 (plain)
1
2
3
4
5
6
7
8
9
10
@static_unload

static var perm := 0

static var prop := "Hello!":
	get: return prop + " suffix"
	set(value): prop = "prefix " + str(value)

func test():
	print("ok")