git-subtree-dir: engine git-subtree-mainline:b74841629egit-subtree-split:a8e37fc010
8 lines
154 B
GDScript
8 lines
154 B
GDScript
# https://github.com/godotengine/godot/issues/43221
|
|
extends Node
|
|
|
|
func test():
|
|
name = "Node"
|
|
print(self["name"])
|
|
self["name"] = "Changed"
|
|
print(name)
|