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