{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
module THREE.PropertyMixer
(
PropertyMixer (..)
, THREE.PropertyMixer.new
) where
import Miso
import qualified THREE.Internal as THREE
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)
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])