-----------------------------------------------------------------------------
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
-----------------------------------------------------------------------------
module THREE.AnimationMixer
  ( -- * Types
    AnimationMixer (..)
    -- * Methods
  , THREE.AnimationMixer.new
    -- * Properties
  ) where
-----------------------------------------------------------------------------
import           Miso
-----------------------------------------------------------------------------
import qualified THREE.Internal as THREE
-----------------------------------------------------------------------------
-- | https://threejs.org/docs/#api/en/scenes/AnimationMixer
newtype AnimationMixer
  = AnimationMixer
  { AnimationMixer -> JSVal
unAnimationMixerCamera :: JSVal
  } deriving (AnimationMixer -> IO Object
(AnimationMixer -> IO Object) -> ToObject AnimationMixer
forall a. (a -> IO Object) -> ToObject a
$ctoObject :: AnimationMixer -> IO Object
toObject :: AnimationMixer -> IO Object
ToObject)
-----------------------------------------------------------------------------
-- | https://threejs.org/docs/#api/en/cameras/AnimationMixer
new :: THREE.Three AnimationMixer
new :: Three AnimationMixer
new = (JSVal -> AnimationMixer)
-> MisoString -> [MisoString] -> Three AnimationMixer
forall args con.
ToArgs args =>
(JSVal -> con) -> MisoString -> args -> Three con
THREE.new JSVal -> AnimationMixer
AnimationMixer MisoString
"AnimationMixer" ([] :: [MisoString])
-----------------------------------------------------------------------------