Skip to content

Commit ca28ca7

Browse files
authored
Examples: Update particle count to 500k in WebGPU compute example (mrdoob#30455)
1 parent 8ebbc3e commit ca28ca7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/webgpu_compute_particles.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<body>
99

1010
<div id="info">
11-
<a href="https://threejs.org" target="_blank" rel="noopener">three.js</a> WebGPU - Compute - 1M Particles
11+
<a href="https://threejs.org" target="_blank" rel="noopener">three.js</a> WebGPU - Compute - 500k Particles
1212
<div id="timestamps" style="
1313
position: absolute;
1414
top: 60px;
@@ -45,7 +45,7 @@
4545

4646
import { GUI } from 'three/addons/libs/lil-gui.module.min.js';
4747

48-
const particleCount = 1000000;
48+
const particleCount = 500000;
4949

5050
const gravity = uniform( - .0098 );
5151
const bounce = uniform( .8 );

0 commit comments

Comments
 (0)