bevy_starfield

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

A procedural night sky plugin for the Bevy game engine.

Cube Example Screenshot

Minimal Example

```rust use bevy::prelude::*; use bevy_starfield::StarfieldPlugin;

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

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

License

bevy_starfield is dual-licensed under MIT and Apache-2.0. You may use it under either at your option.

Credits

The star data included with this crate is sourced from the Yale Bright Star Catalog.