mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 13:41:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			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)
 | 
