Bevy now provides a Skybox component that can be attached to cameras to provide a background in all directions: see examples/3d/skybox.rs. What this crate provides is a simple bit of image processing to turn the sort of skybox "net" image that you find on the internet into one suitable for the Bevy Skybox. It is therefore designed primarily for fast prototyping.
This crate assumes that the input image is of the same format as the examples given in the assets
folder:
a PNG image of a net of six squares in the same shape as these examples. It also assumes that you only need one skybox at any given time.
The usage is documented in the module comment at the top of src/lib.rs
.
To demonstrate this, examples\board_flyover.rs
puts a skybox around a flat "board". Key/mouse camera movement is provided by bevy_flycam
.
Skybox images come from the following sources.
Many skybox are available as net images. bevy_skybox
assumes that the image is a specific net
of a cube.
The assumptions about the image are listed in src/image.rs
, but the image is measured like this.
It assumes the net is exactly aligned with the image rectangle and filling most of its width and height.
Only PNG images are supported currently.
Build using stable
or nightly
toolchain, e.g.
cargo run --release --example board_flyover
Currently compatible with Bevy 0.15.
Raise an issue or PR if you need support for other versions of Bevy.