bevyhub_template 0.0.1-rc.2

An example workflow for publishing Bevy apps and scenes to Bevyhub.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use bevyhub::prelude::*;
use bevy::prelude::*;

/// 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.
pub fn base_app_plugin(app: &mut App) {
	app.add_plugins((
		BevyhubDefaultPlugins::default(),
		DefaultPlaceholderPlugin,
		DefaultReplicatePlugin,
	));
}