reze-engine 0.2.8 → 0.2.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 +2 -2
- package/package.json +1 -1
- package/src/engine.ts +2 -2
package/dist/engine.js
CHANGED
|
@@ -276,7 +276,7 @@ export class Engine {
|
|
|
276
276
|
depthStencil: {
|
|
277
277
|
format: "depth24plus-stencil8",
|
|
278
278
|
depthWriteEnabled: true,
|
|
279
|
-
depthCompare: "less",
|
|
279
|
+
depthCompare: "less-equal",
|
|
280
280
|
},
|
|
281
281
|
multisample: {
|
|
282
282
|
count: this.sampleCount,
|
|
@@ -423,7 +423,7 @@ export class Engine {
|
|
|
423
423
|
depthStencil: {
|
|
424
424
|
format: "depth24plus-stencil8",
|
|
425
425
|
depthWriteEnabled: true,
|
|
426
|
-
depthCompare: "less",
|
|
426
|
+
depthCompare: "less-equal",
|
|
427
427
|
},
|
|
428
428
|
multisample: {
|
|
429
429
|
count: this.sampleCount,
|
package/package.json
CHANGED
package/src/engine.ts
CHANGED
|
@@ -370,7 +370,7 @@ export class Engine {
|
|
|
370
370
|
depthStencil: {
|
|
371
371
|
format: "depth24plus-stencil8",
|
|
372
372
|
depthWriteEnabled: true,
|
|
373
|
-
depthCompare: "less",
|
|
373
|
+
depthCompare: "less-equal",
|
|
374
374
|
},
|
|
375
375
|
multisample: {
|
|
376
376
|
count: this.sampleCount,
|
|
@@ -521,7 +521,7 @@ export class Engine {
|
|
|
521
521
|
depthStencil: {
|
|
522
522
|
format: "depth24plus-stencil8",
|
|
523
523
|
depthWriteEnabled: true,
|
|
524
|
-
depthCompare: "less",
|
|
524
|
+
depthCompare: "less-equal",
|
|
525
525
|
},
|
|
526
526
|
multisample: {
|
|
527
527
|
count: this.sampleCount,
|