0764451dc5
Also move module-specific classes to their own module's `doc_classes` folder.
24 lines
539 B
Python
24 lines
539 B
Python
def can_build(env, platform):
|
|
return True
|
|
|
|
def configure(env):
|
|
env.use_ptrcall = True
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"@NativeScript",
|
|
"ARVRInterfaceGDNative",
|
|
"GDNative",
|
|
"GDNativeLibrary",
|
|
"MultiplayerPeerGDNative",
|
|
"NativeScript",
|
|
"PacketPeerGDNative",
|
|
"PluginScript",
|
|
"StreamPeerGDNative",
|
|
"VideoStreamGDNative",
|
|
"WebRTCPeerConnectionGDNative",
|
|
"WebRTCDataChannelGDNative",
|
|
]
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|