bevy_atmosphere logo

Crates.io MIT/Apache 2.0 Crates.io docs.rs Rust

A procedural sky plugin for the Bevy game engine.

"basic" Example

```rust use bevy::prelude::; use bevy_atmosphere::prelude::;

fn main() { App::new() .addplugins(DefaultPlugins) .addplugin(AtmospherePlugin) .addstartupsystem(setup) .run(); }

fn setup(mut commands: Commands) { commands .spawn_bundle(Camera3dBundle::default()) .insert(AtmosphereCamera(None)); } ```

License

bevy_atmosphere is dual-licensed under MIT and Apache-2.0! That means you can choose to use bevy_atmosphere under either for your project.

0.4 Change Log

0.4.1 Patch