20 unstable releases (8 breaking)

0.9.1 Apr 8, 2024
0.9.0 Feb 23, 2024
0.8.1 Nov 14, 2023
0.7.0 Jul 22, 2023
0.1.3 Nov 16, 2021

#69 in Game dev

Download history 69/week @ 2023-12-23 62/week @ 2023-12-30 124/week @ 2024-01-06 201/week @ 2024-01-13 107/week @ 2024-01-20 207/week @ 2024-01-27 210/week @ 2024-02-03 188/week @ 2024-02-10 521/week @ 2024-02-17 406/week @ 2024-02-24 427/week @ 2024-03-02 386/week @ 2024-03-09 267/week @ 2024-03-16 284/week @ 2024-03-23 343/week @ 2024-03-30 748/week @ 2024-04-06

1,676 downloads per month
Used in bevy_water

MIT/Apache

66KB
1K SLoC

Rust 1K SLoC // 0.0% comments WebGPU Shader Language 199 SLoC // 0.1% comments

bevy_atmosphere logo

crates.io crates.io docs.rs Discord

A procedural sky plugin for the Bevy game engine.

"basic" Example

basic example image

use bevy::prelude::*;
use bevy_atmosphere::prelude::*;

fn main() {
    App::new()
        .add_plugins((DefaultPlugins, AtmospherePlugin))
        .add_system(Startup, setup)
        .run();
}

fn setup(mut commands: Commands) {
    commands.spawn((Camera3dBundle::default(), AtmosphereCamera::default()));
}

"cycle" Example

cycle example image

Getting Started

To learn more, read the docs or check out the examples.

For more information on the technicalities, you can check out the technical docs or check out my blog.

Bevy compatibility

bevy bevy_atmosphere
0.13 0.9
0.12 0.8
0.11 0.7
0.10 0.6
0.9 0.5
0.8 0.4
0.7 0.3
0.6 0.1

🚧 Warning: Incompatible with WebGL 🚧

Versions 0.4 and higher break compatibility with WebGL by using a compute shader for efficiency.

Dependencies

~39–80MB
~1M SLoC