Skip to content

Commit 069523d

Browse files
committed
Rename example: fireworks -> particles
1 parent 8b5b424 commit 069523d

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,8 @@ name = "fog"
158158
path = "examples/fog/src/main.rs"
159159

160160
[[example]]
161-
name = "fireworks"
162-
path = "examples/fireworks/src/main.rs"
161+
name = "particles"
162+
path = "examples/particles/src/main.rs"
163163

164164
[[example]]
165165
name = "terrain"

examples/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,9 @@ This is the same as the `Triangle` example, except it only uses the core module
116116

117117
![Fog example](https://asny.github.io/three-d/0.18/fog.png)
118118

119-
## Fireworks [[code](https://github.com/asny/three-d/tree/master/examples/fireworks/src/main.rs)] [[demo](https://asny.github.io/three-d/0.18/fireworks.html)]
119+
## Particles [[code](https://github.com/asny/three-d/tree/master/examples/particles/src/main.rs)] [[demo](https://asny.github.io/three-d/0.18/particles.html)]
120120

121-
![Fireworks example](https://asny.github.io/three-d/0.18/fireworks.png)
121+
![Particles example](https://asny.github.io/three-d/0.18/particles.png)
122122

123123
## Wireframe [[code](https://github.com/asny/three-d/tree/master/examples/wireframe/src/main.rs)] [[demo](https://asny.github.io/three-d/0.18/wireframe.html)]
124124

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "fireworks"
2+
name = "particles"
33
version = "0.1.0"
44
authors = ["Asger Nyman Christiansen <[email protected]>"]
55
edition = "2021"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ fn main() {
4848

4949
pub fn run() {
5050
let window = Window::new(WindowSettings {
51-
title: "Fireworks!".to_string(),
51+
title: "Particles!".to_string(),
5252
max_size: Some((1280, 720)),
5353
..Default::default()
5454
})

0 commit comments

Comments
 (0)