diff options
author | Sergey Minakov <naithar@icloud.com> | 2020-08-13 18:24:39 +0300 |
---|---|---|
committer | Sergey Minakov <naithar@icloud.com> | 2020-11-10 16:28:29 +0300 |
commit | 30783d57ccf6f368f21a84e408f56b86d05cba2b (patch) | |
tree | 7af4591c589b1393a31599cbad19490893fcc5f1 /modules/arkit/arkit.gdip | |
parent | 03ae26bb74c0b713fe2132c5b003ae41e366746c (diff) |
iOS Modules: separate main platform code from modules
Moved previously builtin modules 'GameCenter', 'AppStore', 'iCloud' to separate modules to be represented as plugin.
Modified 'ARKit' and 'Camera' to not be builtin into engine and work as plugin.
Changed platform code so it's not affected by the move.
Modified Xcode project file to remove parameters that doesn't make any effect.
Added basic '.gdip' plugin config file.
Diffstat (limited to 'modules/arkit/arkit.gdip')
-rw-r--r-- | modules/arkit/arkit.gdip | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/modules/arkit/arkit.gdip b/modules/arkit/arkit.gdip new file mode 100644 index 0000000000..22c0a07e26 --- /dev/null +++ b/modules/arkit/arkit.gdip @@ -0,0 +1,18 @@ +[config] +name="ARKit" +binary="arkit_lib.a" + +initialization="register_arkit_types" +deinitialization="unregister_arkit_types" + +[dependencies] +linked=[] +embedded=[] +system=["AVFoundation.framework", "ARKit.framework"] + +capabilities=["arkit"] + +files=[] + +[plist] +NSCameraUsageDescription="Device camera is used for some functionality" |