Event beforeGetCameraConfiguration
Invoked from native code just before this subsystem calls ArSession_getSupportedCameraConfigsWithFilter.
Namespace: UnityEngine .XR.ARCore
Assembly: solution.dll
Syntax
public event Action<ARCoreBeforeGetCameraConfigurationEventArgs> beforeGetCameraConfiguration
Returns
Type | Description |
---|---|
Action<ARCore |
An Action delegate that you can use to modify the camera config filter. |
Remarks
This allows you to customize the ArCameraConfigFilter passed to ArSession_getSupportedCameraConfigsWithFilter.
Do not destroy the filter object in this callback. Doing so is undefined behavior and may crash.
The filter provided by filter is only guaranteed to exist for the duration of this callback. Accessing it from outside this callback is undefined behavior.