XRTransientInputHitTestOptionsInit constructor
XRTransientInputHitTestOptionsInit({
- required String profile,
- Iterable<
XRHitTestTrackableType> ? entityTypes, - XRRay? offsetRay,
Implementation
factory XRTransientInputHitTestOptionsInit(
{required String profile,
Iterable<XRHitTestTrackableType>? entityTypes,
XRRay? offsetRay}) =>
XRTransientInputHitTestOptionsInit._(
profile: profile,
entityTypes: entityTypes?.map((e) => e.value) ?? undefined,
offsetRay: offsetRay ?? undefined);