You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-05 19:31:35 +00:00
Merge pull request #53479 from vnen/gdscript-subscript-object-self
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
# https://github.com/godotengine/godot/issues/43221
|
||||
extends Node
|
||||
|
||||
func test():
|
||||
name = "Node"
|
||||
print(self["name"])
|
||||
self["name"] = "Changed"
|
||||
print(name)
|
||||
@@ -0,0 +1,3 @@
|
||||
GDTEST_OK
|
||||
Node
|
||||
Changed
|
||||
Reference in New Issue
Block a user