mirror of
https://github.com/godotengine/godot
synced 2024-11-02 08:53:46 +00:00
d9cefb34c1
This PR introduces support for ARKit to the iOS version of Godot. ARKit is Apples Augmented Reality platform. This PR brings in support for ARKit 1.0 and implements a few ARKit 2.0 features. It requires iOS 11 to run but should not prevent Godot from running on older versions as long as ARKit remains unused.
5 lines
92 B
Python
5 lines
92 B
Python
def can_build(env, platform):
|
|
return platform == 'iphone'
|
|
|
|
def configure(env):
|
|
pass
|