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