mirror of
				https://github.com/godotengine/godot.git
				synced 2025-11-03 23:21:15 +00:00 
			
		
		
		
	Removes the useless `@C#`, `@NativeScript` and `@VisualScript` entries.
(cherry picked from commit ba0db95909)
		
	
			
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			517 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			517 B
		
	
	
	
		
			Python
		
	
	
	
	
	
def can_build(env, platform):
 | 
						|
    return True
 | 
						|
 | 
						|
 | 
						|
def configure(env):
 | 
						|
    env.use_ptrcall = True
 | 
						|
 | 
						|
 | 
						|
def get_doc_classes():
 | 
						|
    return [
 | 
						|
        "ARVRInterfaceGDNative",
 | 
						|
        "GDNative",
 | 
						|
        "GDNativeLibrary",
 | 
						|
        "MultiplayerPeerGDNative",
 | 
						|
        "NativeScript",
 | 
						|
        "PacketPeerGDNative",
 | 
						|
        "PluginScript",
 | 
						|
        "StreamPeerGDNative",
 | 
						|
        "VideoStreamGDNative",
 | 
						|
        "WebRTCPeerConnectionGDNative",
 | 
						|
        "WebRTCDataChannelGDNative",
 | 
						|
    ]
 | 
						|
 | 
						|
 | 
						|
def get_doc_path():
 | 
						|
    return "doc_classes"
 |