static_variables_load.gd 167 B

1234567891011
  1. @static_unload
  2. static var perm := 0
  3. static var prop := "Hello!":
  4. get: return prop + " suffix"
  5. set(value): prop = "prefix " + str(value)
  6. func test():
  7. print("ok")