there's example with scrolling fog in bevy repo, https://github.com/bevyengine/bevy/blob/main/examples/3d/scrolling_fog.rs
but if I understood correctly it's for 0.15. is there a way to do something like this in 0.14? I need to scroll fog texture over plane
#scrolling fog
1 messages · Page 1 of 1 (latest)
IMHO main branch still 0.14.X, so you can use this example in 0.14
its from their cargo.toml
name = "bevy"
version = "0.15.0-dev"```
and I can't make
```rust
FogVolume {
density_texture: Some(noise_texture),
density_factor: 0.05,
..default()
},
``` work in 0.14
Yes, unfortunately you are right and I am wrong, I'm sorry