Features


You are viewing an older version of this document (Version 1). The latest is Version 4.

Last updated: 9 months ago • 4 versions | Visibility: Public

Context

This article describes the features provided with the Lynx SDK.

Features are coming progressively as soon as we are able to integrate them in our SDK.


AR/VR

The SDK allows you to enable or disable AR easily with custom features an configuration.

Open custom settings

Under Project Settings > OpenXR > Lynx-R1, you can access the custom settings.

Then, you can customize the settings.

Enable or disable AR/VR from script

To enable or disable AR/VR at runtime, you can directly call LynxAPI methods.

LynxAPI.IsAR(); // Check if the application is currenlty in AR mode
LynxAPI.IsVR(); // Check if the application is currenlty in VR mode
LynxAPI.SetAR(); // Enable AR mode.
LynxAPI.SetVR(); // Disable AR mode.
LynxAPI.ToggleAR(); // Switch between AR and VR modes.

LynxAPI.SetAROnly(); // Enable AR only mode (disable all objects not having Visible in Full AR tag).
LynxAPI.SetAROnly(false); // Disable AR only mode (re-enable all objects not having Visible in Full AR tag and hiddern by SetAROnly).
LynxAPI.ToggleAROnly(); // Switch between AR and VR modes (based on Visible in Full AR tag)


Current limitation

HDR (URP) and post processing

Currently, using HDR with URP or post processing are not working.

There are some conflicts with AR layer we are working on.


Cameras image recovery

(Work in progress)

Environment mesh

(Work in progress)