mirror of
				https://github.com/godotengine/godot.git
				synced 2025-11-04 07:31:16 +00:00 
			
		
		
		
	* Add missing `UNSAFE_CALL_ARGUMENT` warning. * Fix `Object` constructor. * Display an error for non-existent static methods.
		
			
				
	
	
		
			6 lines
		
	
	
	
		
			113 B
		
	
	
	
		
			GDScript
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			113 B
		
	
	
	
		
			GDScript
		
	
	
	
	
	
# GH-73213
 | 
						|
 | 
						|
func test():
 | 
						|
	var object := Object.new() # Not `Object()`.
 | 
						|
	print(object.get_class())
 | 
						|
	object.free()
 |