mirror of
https://github.com/godotengine/godot.git
synced 2025-10-22 17:33:33 +00:00
11 lines
178 B
GDScript3
11 lines
178 B
GDScript3
![]() |
func test():
|
||
|
var node := Node.new()
|
||
|
var callable: Callable = node.free
|
||
|
callable.call()
|
||
|
print(node)
|
||
|
|
||
|
node = Node.new()
|
||
|
callable = node["free"]
|
||
|
callable.call()
|
||
|
print(node)
|