static_variables_other.gd 199 B

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