mirror of
				https://github.com/godotengine/godot.git
				synced 2025-11-03 23:21:15 +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)
							 |