浏览代码

GLTFLoader method chainable register/unregister

Takahiro 5 年之前
父节点
当前提交
c2fe64e18c
共有 2 个文件被更改,包括 8 次插入0 次删除
  1. 4 0
      examples/js/loaders/GLTFLoader.js
  2. 4 0
      examples/jsm/loaders/GLTFLoader.js

+ 4 - 0
examples/js/loaders/GLTFLoader.js

@@ -121,6 +121,8 @@ THREE.GLTFLoader = ( function () {
 
 			}
 
+			return this;
+
 		},
 
 		unregister: function ( plugin ) {
@@ -131,6 +133,8 @@ THREE.GLTFLoader = ( function () {
 
 			}
 
+			return this;
+
 		},
 
 		parse: function ( data, path, onLoad, onError ) {

+ 4 - 0
examples/jsm/loaders/GLTFLoader.js

@@ -185,6 +185,8 @@ var GLTFLoader = ( function () {
 
 			}
 
+			return this;
+
 		},
 
 		unregister: function ( plugin ) {
@@ -195,6 +197,8 @@ var GLTFLoader = ( function () {
 
 			}
 
+			return this;
+
 		},
 
 		parse: function ( data, path, onLoad, onError ) {