Skip to content

Instantly share code, notes, and snippets.

@espace3d
espace3d / 03-three-js-particle-system.markdown
Created July 24, 2021 10:35
03 three.js particle system
@espace3d
espace3d / index.html
Created February 22, 2022 18:57
InstancedMesh + SelectiveBloom
<script type="x-shader/x-vertex" id="vertexshader">
varying vec2 vUv;
void main() {
vUv = uv;
gl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );