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