virtualx-engine/modules/gdscript/tests/scripts/analyzer/features/subscript_self.gd
2021-10-06 12:01:34 -03:00

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)