Skip to content

Commit 2df963a

Browse files
update
1 parent 6f1c017 commit 2df963a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/volumetricdisplay/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1526,7 +1526,7 @@
15261526
for (let x = 0, xc = (VolumetricDisplay.layersX.length - 1); x < xc; x++) {
15271527
for (let z = 0, zc = (VolumetricDisplay.layersZ.length - 1); z < zc; z++) {
15281528
const fireVoxelSource = this.instanceData.fireVoxelsXyz[x][y+1][z];
1529-
const decay = (Math.random() * 2.5) | 0;
1529+
const decay = (Math.random() * 2.7) | 0;
15301530
const destX = (xc + x + (((Math.random() * 2) | 0) - 1)) % xc;
15311531
const destZ = (zc + z + (((Math.random() * 2) | 0) - 1)) % zc;
15321532
const heat = Math.max(0, fireVoxelSource - decay);

0 commit comments

Comments
 (0)