diff options
Diffstat (limited to 'modules/gdnative/config.py')
-rw-r--r-- | modules/gdnative/config.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/gdnative/config.py b/modules/gdnative/config.py index b9e5afcdf3..4b997e4bfe 100644 --- a/modules/gdnative/config.py +++ b/modules/gdnative/config.py @@ -1,13 +1,15 @@ def can_build(env, platform): return True + def configure(env): env.use_ptrcall = True + def get_doc_classes(): return [ "@NativeScript", - "ARVRInterfaceGDNative", + "XRInterfaceGDNative", "GDNative", "GDNativeLibrary", "MultiplayerPeerGDNative", @@ -20,5 +22,6 @@ def get_doc_classes(): "WebRTCDataChannelGDNative", ] + def get_doc_path(): return "doc_classes" |