Skip to content

Commit 7105716

Browse files
authored
Examples: Clean up. (#31623)
1 parent 6dfdfb3 commit 7105716

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed
1.23 KB
Loading

examples/tags.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@
138138
"webgpu_mirror": [ "reflection" ],
139139
"webgpu_multiple_rendertargets": [ "mrt" ],
140140
"webgpu_multiple_rendertargets_readback": [ "mrt" ],
141+
"webgpu_particles": [ "fire" ],
141142
"webgpu_postprocessing_3dlut": [ "color grading" ],
142143
"webgpu_postprocessing_afterimage": [ "trails" ],
143144
"webgpu_postprocessing_ao": [ "ambient occlusion", "mrt" ],

examples/webgpu_particles.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
camera.position.set( 1300, 500, 0 );
5454

5555
scene = new THREE.Scene();
56+
scene.background = new THREE.Color( 0x333333 );
5657

5758
// textures
5859

@@ -133,7 +134,7 @@
133134

134135
//
135136

136-
const helper = new THREE.GridHelper( 3000, 40, 0x303030, 0x303030 );
137+
const helper = new THREE.GridHelper( 3000, 40, 0x444444, 0x444444 );
137138
helper.position.y = - 75;
138139
scene.add( helper );
139140

0 commit comments

Comments
 (0)