summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/runtime/features/static_variables.gd
blob: 7fa76ca4b010f546a98868f18eae01a882e15c11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
@static_unload

static var perm := 0

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

static func get_data():
	return "data"

static var data = get_data()

class Inner:
	static var prop := "inner"
	static func _static_init() -> void:
		prints("Inner._static_init", prop)

	class InnerInner:
		static var prop := "inner inner"
		static func _static_init() -> void:
			prints("InnerInner._static_init", prop)

func test():
	prints("data:", data)

	prints("perm:", perm)
	prints("prop:", prop)

	perm = 1
	prop = "World!"

	prints("perm:", perm)
	prints("prop:", prop)

	prints("other.perm:", StaticVariablesOther.perm)
	prints("other.prop:", StaticVariablesOther.prop)

	StaticVariablesOther.perm = 2
	StaticVariablesOther.prop = "foo"

	prints("other.perm:", StaticVariablesOther.perm)
	prints("other.prop:", StaticVariablesOther.prop)

	@warning_ignore("unsafe_method_access")
	var path = get_script().get_path().get_base_dir()
	@warning_ignore("unsafe_call_argument")
	var other = load(path + "/static_variables_load.gd")

	prints("load.perm:", other.perm)
	prints("load.prop:", other.prop)

	other.perm = 3
	other.prop = "bar"

	prints("load.perm:", other.perm)
	prints("load.prop:", other.prop)