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