bevy-aabb-instancing 0.1.0

Render millions of AABB instances in Bevy.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Render millions of AABBs every frame with an instancing renderer.

// TODO: give users control over GPU buffers so they can be more efficient with updates

mod bundle;
mod component;
mod draw_function;
mod pipeline;
mod plugin;

pub use bundle::*;
pub use component::*;
pub use plugin::*;

// Re-exports.
pub use bevy;
pub use bitvec;