2018-05-31 01:11:33 +08:00
|
|
|
def can_build(env, platform):
|
2017-08-29 15:47:53 +08:00
|
|
|
return True
|
2016-06-26 22:02:15 +08:00
|
|
|
|
|
|
|
def configure(env):
|
2017-04-03 22:11:38 +08:00
|
|
|
env.use_ptrcall = True
|
2017-10-13 18:49:01 +08:00
|
|
|
|
|
|
|
def get_doc_classes():
|
2017-11-16 02:23:20 +08:00
|
|
|
return [
|
2019-06-19 00:04:29 +08:00
|
|
|
"@NativeScript",
|
2017-11-16 02:23:20 +08:00
|
|
|
"ARVRInterfaceGDNative",
|
|
|
|
"GDNative",
|
|
|
|
"GDNativeLibrary",
|
2018-07-26 17:56:21 +08:00
|
|
|
"MultiplayerPeerGDNative",
|
2017-11-16 02:23:20 +08:00
|
|
|
"NativeScript",
|
2018-06-27 02:26:51 +08:00
|
|
|
"PacketPeerGDNative",
|
2017-11-16 02:23:20 +08:00
|
|
|
"PluginScript",
|
2018-07-26 17:56:21 +08:00
|
|
|
"StreamPeerGDNative",
|
2019-01-10 21:34:15 +08:00
|
|
|
"VideoStreamGDNative",
|
2019-05-11 07:46:27 +08:00
|
|
|
"WebRTCPeerConnectionGDNative",
|
|
|
|
"WebRTCDataChannelGDNative",
|
2017-11-16 02:23:20 +08:00
|
|
|
]
|
2017-10-13 18:49:01 +08:00
|
|
|
|
|
|
|
def get_doc_path():
|
2017-11-16 02:23:20 +08:00
|
|
|
return "doc_classes"
|