Inheritance: Loader →
A loader for the VRML format.
const loader = new VRMLLoader();
const object = await loader.loadAsync( 'models/vrml/house.wrl' );
scene.add( object );
VRMLLoader is an addon, and must be imported explicitly, see Installation#Addons.
import { VRMLLoader } from 'three/addons/loaders/VRMLLoader.js';
Constructs a new VRML loader.
manager
The loading manager.
Starts loading from the given URL and passes the loaded VRML asset to the onLoad() callback.
url
The path/URL of the file to be loaded. This can also be a data URI.
onLoad
Executed when the loading process has been finished.
onProgress
Executed while the loading is in progress.
onError
Executed when errors occur.
Overrides: Loader#load
Parses the given VRML data and returns the resulting scene.
data
The raw VRML data as a string.
path
The URL base path.
Overrides: Loader#parse
Returns: The parsed scene.