reze-engine 0.6.1 → 0.6.2

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/model.js CHANGED
@@ -506,7 +506,7 @@ export class Model {
506
506
  async loadVmd(vmdUrl) {
507
507
  this.animationData = await VMDLoader.load(vmdUrl);
508
508
  this.resetAllBones();
509
- this.resetAllMorphs();
509
+ // this.resetAllMorphs()
510
510
  this.processFrames();
511
511
  // Apply initial pose at time 0
512
512
  this.animationTime = 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reze-engine",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "description": "A WebGPU-based MMD model renderer",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
package/src/model.ts CHANGED
@@ -771,7 +771,7 @@ export class Model {
771
771
  async loadVmd(vmdUrl: string): Promise<void> {
772
772
  this.animationData = await VMDLoader.load(vmdUrl)
773
773
  this.resetAllBones()
774
- this.resetAllMorphs()
774
+ // this.resetAllMorphs()
775
775
  this.processFrames()
776
776
  // Apply initial pose at time 0
777
777
  this.animationTime = 0