2018-05-30 17:11:33 +00:00
|
|
|
def can_build(env, platform):
|
2017-08-29 07:47:53 +00:00
|
|
|
return True
|
2016-06-26 14:02:15 +00:00
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
|
2016-06-26 14:02:15 +00:00
|
|
|
def configure(env):
|
2020-11-25 13:08:17 +00:00
|
|
|
pass
|
2017-10-13 10:49:01 +00:00
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
|
2017-10-13 10:49:01 +00:00
|
|
|
def get_doc_classes():
|
2017-11-15 18:23:20 +00:00
|
|
|
return [
|
2020-04-08 14:47:36 +00:00
|
|
|
"XRInterfaceGDNative",
|
2017-11-15 18:23:20 +00:00
|
|
|
"GDNative",
|
|
|
|
"GDNativeLibrary",
|
2018-07-26 09:56:21 +00:00
|
|
|
"MultiplayerPeerGDNative",
|
2017-11-15 18:23:20 +00:00
|
|
|
"NativeScript",
|
2018-06-26 18:26:51 +00:00
|
|
|
"PacketPeerGDNative",
|
2017-11-15 18:23:20 +00:00
|
|
|
"PluginScript",
|
2018-07-26 09:56:21 +00:00
|
|
|
"StreamPeerGDNative",
|
2019-01-10 13:34:15 +00:00
|
|
|
"VideoStreamGDNative",
|
2019-05-10 23:46:27 +00:00
|
|
|
"WebRTCPeerConnectionGDNative",
|
|
|
|
"WebRTCDataChannelGDNative",
|
2017-11-15 18:23:20 +00:00
|
|
|
]
|
2017-10-13 10:49:01 +00:00
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
|
2017-10-13 10:49:01 +00:00
|
|
|
def get_doc_path():
|
2017-11-15 18:23:20 +00:00
|
|
|
return "doc_classes"
|