We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f1c017 commit 2df963aCopy full SHA for 2df963a
1 file changed
src/volumetricdisplay/index.html
@@ -1526,7 +1526,7 @@
1526
for (let x = 0, xc = (VolumetricDisplay.layersX.length - 1); x < xc; x++) {
1527
for (let z = 0, zc = (VolumetricDisplay.layersZ.length - 1); z < zc; z++) {
1528
const fireVoxelSource = this.instanceData.fireVoxelsXyz[x][y+1][z];
1529
- const decay = (Math.random() * 2.5) | 0;
+ const decay = (Math.random() * 2.7) | 0;
1530
const destX = (xc + x + (((Math.random() * 2) | 0) - 1)) % xc;
1531
const destZ = (zc + z + (((Math.random() * 2) | 0) - 1)) % zc;
1532
const heat = Math.max(0, fireVoxelSource - decay);
0 commit comments