Use the iOS 11+ ARKit framework in the Axway Titanium SDK.
Supporting ARKit does not simply mean to write some public methods that people can use to "support ARKit in their app". It means to write API's for SceneKit, SpriteKit, ARKit and all bindings around those frameworks. The current implementation starts by creating new scene-views where objects can be placed in.
That's why it is not clear, yet, what kind of API's should be supported and which one don't. I would recommend everyone to open a new issue and leave his/her thoughts regarding their ARKit use-case with Titanium, so the explicit implementation can be scoped.
Until then, it does not make sense to port ARKit example to Titanium, since they will always be limited to the exact example-usage, without the possibility of customizations.
isSupported()
Whether the current device supports this ARKit
.
SceneView
A ARKit scene-view. Create with createSceneView(args)
.
run(args)
Runs the session with the provided configuration. Optional parameters:
planeDetection
(Number): Type of planes to detect in the scene.
PLANE_DETECTION_NONE
PLANE_DETECTION_HORIZONTAL
worldAlignment
(Number): Determines how the coordinate system should be aligned with the world.
WORLD_ALIGNMENT_CAMERA
WORLD_ALIGNMENT_GRAVITY
WORLD_ALIGNMENT_GRAVITY_AND_HEADING
lightEstimationEnabled
(Boolean): Enable or disable light estimation.providesAudioData
(Boolean): Determines whether to capture and provide audio data.pause()
Pauses the session.
addAnchor(args)
Adds an anchor to the session. Has to be a 4x4 matrix represented by a multi-dimensional array, e.g.
sceneView.addAnchor([[1, 2, 3, 4], [5, 6, 7, 8], [9, 0, 1, 2], [3, 4, 5, 6]]);
removeAnchor(args)
Removes an anchor from the session. Has to be a 4x4 matrix like in addAnchor
.
automaticallyUpdatesLightning
Determines whether the view will update the scene’s lighting.
showStatistics
Determines whether the receiver should display statistics info like FPS.
Hans Knöchel (@hansemannnn / Web)
MIT