mirror of
https://github.com/godotengine/godot.git
synced 2024-12-15 10:12:40 +08:00
d76806d322
ptrcall is now also used to optimize calls in GDScript, on top of the existing use by the GDNative and Mono modules. It no longer makes sense to make it optional.
27 lines
497 B
Python
27 lines
497 B
Python
def can_build(env, platform):
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"XRInterfaceGDNative",
|
|
"GDNative",
|
|
"GDNativeLibrary",
|
|
"MultiplayerPeerGDNative",
|
|
"NativeScript",
|
|
"PacketPeerGDNative",
|
|
"PluginScript",
|
|
"StreamPeerGDNative",
|
|
"VideoStreamGDNative",
|
|
"WebRTCPeerConnectionGDNative",
|
|
"WebRTCDataChannelGDNative",
|
|
]
|
|
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|