USDZOptions constructor

USDZOptions({
  1. bool includeAnchoringProperties = true,
  2. bool quickLookCompatible = false,
  3. int maxTextureSize = 1024,
  4. Map<String, dynamic>? ar,
})

Implementation

USDZOptions({
  this.includeAnchoringProperties = true,
  this.quickLookCompatible = false,
  this.maxTextureSize = 1024,
  Map<String,dynamic>? ar
}){
  this.ar = ar ?? {
			'anchoring': { 'type': 'plane' },
			'planeAnchoring': { 'alignment': 'horizontal' }
  };
}