beetmash_core 0.0.7

The number one bevy scene registry.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::prelude::*;
use bevy::prelude::*;



pub fn beetmash_full_plugins(app: &mut App) {
	app.add_plugins((
		BeetmashDefaultPlugins::with_beetmash_assets(),
		DefaultPlaceholderPlugin,
		DefaultReplicatePlugin,
		UiTerminalPlugin,
		temp_patches,
	));
}