391e46830f
Fix various missing arguments in bindings.
20 lines
406 B
Python
20 lines
406 B
Python
def can_build(env, platform):
|
|
return True
|
|
|
|
def configure(env):
|
|
env.use_ptrcall = True
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"ARVRInterfaceGDNative",
|
|
"GDNative",
|
|
"GDNativeLibrary",
|
|
"MultiplayerPeerGDNative",
|
|
"NativeScript",
|
|
"PacketPeerGDNative",
|
|
"PluginScript",
|
|
"StreamPeerGDNative",
|
|
]
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|