[b86468]: / v3 / js / libs / three / loaders / VRMLoader.js

Download this file

63 lines (36 with data), 1.1 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/**
* @author Takahiro / https://github.com/takahirox
*/
// VRM Specification: https://dwango.github.io/vrm/vrm_spec/
//
// VRM is based on glTF 2.0 and VRM extension is defined
// in top-level json.extensions.VRM
THREE.VRMLoader = ( function () {
function VRMLoader( manager ) {
if ( THREE.GLTFLoader === undefined ) {
throw new Error( 'THREE.VRMLoader: Import THREE.GLTFLoader.' );
}
this.manager = ( manager !== undefined ) ? manager : THREE.DefaultLoadingManager;
this.gltfLoader = new THREE.GLTFLoader( this.manager );
}
VRMLoader.prototype = {
constructor: VRMLoader,
crossOrigin: 'Anonymous',
load: function ( url, onLoad, onProgress, onError ) {
this.gltfLoader.load( url, onLoad, onProgress, onError );
},
setCrossOrigin: function ( value ) {
this.glTFLoader.setCrossOrigin( value );
return this;
},
setPath: function ( value ) {
this.glTFLoader.setPath( value );
return this;
},
setDRACOLoader: function ( dracoLoader ) {
this.glTFLoader.setDRACOLoader( dracoLoader );
return this;
}
};
return VRMLoader;
} )();