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