{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
module THREE.LoaderUtils
(
LoaderUtils (..)
, THREE.LoaderUtils.new
) where
import Miso
import qualified THREE.Internal as THREE
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)
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])