reze-engine 0.1.8 → 0.1.9

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/engine.js CHANGED
@@ -12,7 +12,7 @@ export class Engine {
12
12
  this.sampleCount = 4; // MSAA 4x
13
13
  // Bloom settings
14
14
  this.bloomThreshold = 0.3;
15
- this.bloomIntensity = 0.14;
15
+ this.bloomIntensity = 0.13;
16
16
  this.currentModel = null;
17
17
  this.modelDir = "";
18
18
  this.physics = null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reze-engine",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "A WebGPU-based MMD model renderer",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
package/src/engine.ts CHANGED
@@ -63,7 +63,7 @@ export class Engine {
63
63
  private linearSampler!: GPUSampler
64
64
  // Bloom settings
65
65
  public bloomThreshold: number = 0.3
66
- public bloomIntensity: number = 0.14
66
+ public bloomIntensity: number = 0.13
67
67
  private currentModel: Model | null = null
68
68
  private modelDir: string = ""
69
69
  private physics: Physics | null = null