lythreeframe 1.2.40 → 1.2.41
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/dist/bundle.cjs.js +1 -0
- package/dist/bundle.esm.js +1 -0
- package/package.json +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -2899,6 +2899,7 @@ class ThreeJsApp {
|
|
|
2899
2899
|
worldClass: World,
|
|
2900
2900
|
viewportClass: Viewport,
|
|
2901
2901
|
};
|
|
2902
|
+
this._appParam.isRenderEveryFrame = appParam.isRenderEveryFrame;
|
|
2902
2903
|
this._clock = new webgpu.Clock();
|
|
2903
2904
|
this._camera = CameraFactory.createCamera(this._appParam.cameraParam);
|
|
2904
2905
|
this._world = new this._appParam.classes.worldClass(this, this._appParam.worldParam ? this._appParam.worldParam : DefaultWorldParam);
|
package/dist/bundle.esm.js
CHANGED
|
@@ -2897,6 +2897,7 @@ class ThreeJsApp {
|
|
|
2897
2897
|
worldClass: World,
|
|
2898
2898
|
viewportClass: Viewport,
|
|
2899
2899
|
};
|
|
2900
|
+
this._appParam.isRenderEveryFrame = appParam.isRenderEveryFrame;
|
|
2900
2901
|
this._clock = new Clock();
|
|
2901
2902
|
this._camera = CameraFactory.createCamera(this._appParam.cameraParam);
|
|
2902
2903
|
this._world = new this._appParam.classes.worldClass(this, this._appParam.worldParam ? this._appParam.worldParam : DefaultWorldParam);
|