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.
@@ -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);
@@ -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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lythreeframe",
3
- "version": "1.2.40",
3
+ "version": "1.2.41",
4
4
  "description": "Three.js 封装",
5
5
  "main": "dist/bundle.cjs.js",
6
6
  "module": "dist/bundle.esm.js",