static_constructor.gd 246 B

12345678910111213
  1. @static_unload
  2. static var foo = "bar"
  3. static func _static_init():
  4. print("static init called")
  5. prints("foo is", foo)
  6. func test():
  7. var _lambda = func _static_init():
  8. print("lambda does not conflict with static constructor")
  9. print("done")