A procedural night sky plugin for the Bevy game engine.
```rust use bevy::prelude::*; use bevy_starfield::StarfieldPlugin;
fn main() { App::new() .addplugins(DefaultPlugins) .addplugin(StarfieldPlugin) .addstartupsystem(setup) .insertresource(GameUnitsToCelestial { originlatitude: 51.4778, origin_longitude: -0.0014, ..Default::default() }) .run(); }
fn setup(mut commands: Commands) { commands.spawn(Camera3dBundle::default()); } ```
bevy_starfield is dual-licensed under MIT and Apache-2.0. You may use it under either at your option.
The star data included with this crate is sourced from the Yale Bright Star Catalog.