How to Set Up Real-World Occlusion
Lightship Occlusion creates depth in AR applications, rendering game objects in front of or behind objects in the real world. In ARDK 3.0, Lightship integrates seamlessly with the AR Foundation Occlusion Manager, enabling occlusion options not available in ARKit and ARCore.
Prerequisites
You will need a Unity project with ARDK installed and a set-up basic AR scene. For more information, see Installing ARDK 3 and Setting up an AR Scene.
Setting Up Occlusion
To set up Lightship occlusion:
- Add an
AROcclusionManager
to your Main CameraGameObject
:- In the Hierarchy, expand the
XROrigin
and Camera Offset, then select the Main Camera object. Then, in the Inspector, click Add Component and add anAROcclusionManager
.
- In the Hierarchy, expand the
- If you are using the Universal Render Pipeline, add a
Lightship Occlusion Extension Feature
to the URP renderer:- In the Project window, select the Settings directory under Assets, then find the URP renderer you are using.
- In the Inspector, click the Add Renderer Feature button, then select
Lightship Occlusion Extension Feature
.
- Add a cube as a child of your Camera, then set its position, rotation, and scale:
- In the Hierarchy, right-click the Main Camera, then mouse over 3D Object and select Cube.
- In the Inspector, under the Transform heading, set the cube's position to (0, 0, 2), its rotation to (0, 45, 45), and its scale to (0.2, 0.2, 0.2).
- When you build to device or use playback, your cube will be occluded by physical objects that are less than 2 meters away from your phone.
Improving Occlusion Quality with the Lightship Occlusion Extension
By adding the Lightship Occlusion Extension, you can improve the visual quality of occlusions by adding functionality to the standard AROcclusionManager
.
To add the extension and test one of its features:
- Add a
LightshipOcclusionExtension
to the Main CameraGameObject
.- In the Hierarchy, expand the
XROrigin
and select the Main Camera. Then, in the Inspector, click Add Component and add aLightship Occlusion Extension
.
- In the Hierarchy, expand the
- In the extension options menu, set the Optimal Occlusion Distance Mode to Specified Game Object.
- Set the Cube you created earlier as the Principal Occludee.
- When you build to device or run in playback, the edges of objects in the image should now line up more precisely with the occlusion boundaries of the cube.
For more information on the Lightship Occlusion Extension and its features, see the Occlusion Feature page.
Setting up Occlusion Suppression
Occlusion Suppression prevents pixels containing specified semantic information from occluding AR assets. Depth-based occlusion can be noisy and lead to inconsistencies with particular semantic channels. Enabling Occlusion Suppression can improve the visual quality of occlusions, particularly when AR characters appear to clip into the floor or disappear into the sky.
- Follow the steps in Improving Occlusion Quality with the Lightship Occlusion Extension.
- Add an
ARSemanticSegmentationManager
to the Main CameraGameObject
.- In the Hierarchy, expand the 'XROrigin' and select the Main Camera. Then, in the Inspector, click Add Component and add an
AR Semantic Segmentation Manager
to it.
- In the Hierarchy, expand the 'XROrigin' and select the Main Camera. Then, in the Inspector, click Add Component and add an
- In the Inspector, open the Lightship Occlusion Extension options menu, then check the box labeled Enable Occlusion Suppression. This will make new options appear.
- Drag the Main Camera
GameObject
from the Hierarchy to the Semantic Segmentation Manager field in the Inspector. - In the Suppression Channels list, add
sky
for Element 0 andground
for Element 1. - Done! When you test your application, pixels corresponding to the ground or sky should not occlude your cube. Try using other semantic channels from the Semantics page and see what happens!
Setting up Occlusion Stabilization
Occlusion Stabilization combines information from the instantaneous depth buffer and a depth field rendered from the world mesh to stabilize occlusions between frames. This leads to higher quality, more consistent occlusions in static parts of the scene.
- Follow the steps in Improving Occlusion Quality with the Lightship Occlusion Extension.
- Set up Meshing in your scene:
- In the Hierarchy, select the
XROrigin
and add an emptyGameObject
to it. Name it Meshing. - Select Meshing, then, in the Inspector, click Add Component and add an ARMeshManager Component to it.
- In the ARMeshManager Component, set the MeshPrefab to FusedMesh (located in
NianticLightshipARPlugin/Assets/Prefabs
). - Select the Layer drop-down in the Inspector, then create a layer named
ARDK_FusedDepth
. Set the layer for Meshing toARDK_FusedDepth
. - [Optional] To configure advanced settings for meshing, add a LightshipMeshingExtension Component to the Meshing
GameObject
. - [URP Only] If using the universal render pipeline, change the Shader for the FusedMesh Material to
Lightship/FusedDepthChunkURP
.
- In the Hierarchy, select the
- Enable Occlusion Stabilization:
- In the Inspector, open the Lighthsip Occlusion Extension options menu, then check the box labeled Enable Occlusion Stabilization. This will make new options appear.
- Drag the Meshing
GameObject
from the Hierarchy to the Meshing Manager field in the Inspector.
More Information
For more information, see the Occlusion Feature page.