foxtrot 0.1.0

A 3D reference project and tech demo for the Bevy Engine.
1
2
3
4
5
6
7
8
9
//! [Hanabi](https://github.com/djeedai/bevy_hanabi) is our GPU particle system. Note that we don't use Hanabi
//! on Wasm as it is not supported on WebGL. If we only target WebGPU, we can safely reactivate it.

use bevy::prelude::*;
use bevy_hanabi::prelude::*;

pub(super) fn plugin(app: &mut App) {
    app.add_plugins(HanabiPlugin);
}