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.
26 lines
497 B
Python
26 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"
|