Bevy/Plugin
Bevy
の
プラグイン
プラグイン
は
サードパーティ
のものも含め公開されている
https://bevy.org/assets
DefaultPlugin
や
MinimalPlugin
がある
自作することもできる
code:.rs
pub struct HelloPlugin;
impl Plugin for HelloPlugin {
fn build(&self, app: &mut App) {
// add things to your app here
}
}