Skip to content

Commit

Permalink
Examples: Update particle count to 500k in WebGPU compute example (#3…
Browse files Browse the repository at this point in the history
  • Loading branch information
Makio64 authored Feb 5, 2025
1 parent 8ebbc3e commit ca28ca7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/webgpu_compute_particles.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<body>

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

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

const particleCount = 1000000;
const particleCount = 500000;

const gravity = uniform( - .0098 );
const bounce = uniform( .8 );
Expand Down

0 comments on commit ca28ca7

Please sign in to comment.