@qy_better_lib/hooks 0.2.25 → 0.2.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/use-three/index.mjs +0 -2
- package/package.json +1 -1
package/lib/use-three/index.mjs
CHANGED
|
@@ -737,7 +737,6 @@ function use_loader(current_three) {
|
|
|
737
737
|
loadingState.loaded = true;
|
|
738
738
|
loadingState.progress = 1;
|
|
739
739
|
loadingState.model = gltf.scene;
|
|
740
|
-
current_three.scene?.add(gltf.scene);
|
|
741
740
|
resolve(loadingState);
|
|
742
741
|
},
|
|
743
742
|
(xhr) => {
|
|
@@ -776,7 +775,6 @@ function use_loader(current_three) {
|
|
|
776
775
|
loadingState.loaded = true;
|
|
777
776
|
loadingState.progress = 1;
|
|
778
777
|
loadingState.model = object;
|
|
779
|
-
current_three.scene?.add(object);
|
|
780
778
|
resolve(loadingState);
|
|
781
779
|
},
|
|
782
780
|
(xhr) => {
|