// Generated by scripts/generate.mjs from bindings/api.mjs. Do not edit.

///|
#external
pub type USDZExportOptions

///|
#module("@mizchi/three-mbt/asset-formats")
pub extern "js" fn USDZExportOptions::USDZExportOptions() -> USDZExportOptions = "uSDZExportOptions"

///|
pub extern "js" fn USDZExportOptions::only_visible(
  self : USDZExportOptions,
) -> Bool =
  #| (self) => self.onlyVisible

///|
pub extern "js" fn USDZExportOptions::set_only_visible(
  self : USDZExportOptions,
  value : Bool,
) -> Unit =
  #| (self, value) => { self.onlyVisible = value; }

///|
pub extern "js" fn USDZExportOptions::quick_look_compatible(
  self : USDZExportOptions,
) -> Bool =
  #| (self) => self.quickLookCompatible

///|
pub extern "js" fn USDZExportOptions::set_quick_look_compatible(
  self : USDZExportOptions,
  value : Bool,
) -> Unit =
  #| (self, value) => { self.quickLookCompatible = value; }

///|
pub extern "js" fn USDZExportOptions::max_texture_size(
  self : USDZExportOptions,
) -> Int =
  #| (self) => self.maxTextureSize

///|
pub extern "js" fn USDZExportOptions::set_max_texture_size(
  self : USDZExportOptions,
  value : Int,
) -> Unit =
  #| (self, value) => { self.maxTextureSize = value; }

///|
pub extern "js" fn USDZExportOptions::include_anchoring_properties(
  self : USDZExportOptions,
) -> Bool =
  #| (self) => self.includeAnchoringProperties

///|
pub extern "js" fn USDZExportOptions::set_include_anchoring_properties(
  self : USDZExportOptions,
  value : Bool,
) -> Unit =
  #| (self, value) => { self.includeAnchoringProperties = value; }

///|
pub extern "js" fn USDZExportOptions::animation_frame_rate(
  self : USDZExportOptions,
) -> Double =
  #| (self) => self.animationFrameRate

///|
pub extern "js" fn USDZExportOptions::set_animation_frame_rate(
  self : USDZExportOptions,
  value : Double,
) -> Unit =
  #| (self, value) => { self.animationFrameRate = value; }

///|
pub extern "js" fn USDZExportOptions::set_animations(
  self : USDZExportOptions,
  clips : FixedArray[AnimationClip],
) -> Unit =
  #| (self, clips) => { self.animations = clips.slice(); }