beetmash_template 0.0.6-rc.2

An example workflow for publishing Bevy apps and scenes to Beetmash.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! In scene-based workflows apps are mainly for adding plugins and systems.
//! They should only spawn low-level entities and resources, allowing for
//! scenes to be spawned via some IO mechanism, ie cli, fs or network.
use beetmash::prelude::*;
use bevy::prelude::*;

fn main() {
	App::new()
		.add_plugins((
			BeetmashDefaultPlugins::default(),
			DefaultPlaceholderPlugin,
			DefaultReplicatePlugin,
		))
		.run();
}