Przeglądaj źródła

ObjectLoader: Add missing call in `parseAsync()`. (#28777)

Michael Herzog 1 rok temu
rodzic
commit
8d89f05b22
1 zmienionych plików z 1 dodań i 0 usunięć
  1. 1 0
      src/loaders/ObjectLoader.js

+ 1 - 0
src/loaders/ObjectLoader.js

@@ -206,6 +206,7 @@ class ObjectLoader extends Loader {
 		const skeletons = this.parseSkeletons( json.skeletons, object );
 
 		this.bindSkeletons( object, skeletons );
+		this.bindLightTargets( object );
 
 		return object;