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