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