mirror of
https://github.com/kaosat-dev/Blender_bevy_components_workflow.git
synced 2024-11-22 20:00:53 +00:00
33 lines
726 B
Rust
33 lines
726 B
Rust
use bevy::prelude::*;
|
|
// use bevy_gltf_worlflow_examples_common::CommonPlugin;
|
|
mod state;
|
|
use state::*;
|
|
|
|
mod core;
|
|
use crate::core::*;
|
|
|
|
mod game;
|
|
use game::*;
|
|
|
|
mod dupe_components;
|
|
mod test_components;
|
|
use test_components::*;
|
|
|
|
mod hierarchy_debug;
|
|
use hierarchy_debug::*;
|
|
|
|
fn main() {
|
|
App::new()
|
|
.add_plugins((
|
|
DefaultPlugins.set(AssetPlugin::default()),
|
|
HiearchyDebugPlugin,
|
|
// our custom plugins
|
|
// CommonPlugin,
|
|
StatePlugin,
|
|
CorePlugin, // reusable plugins
|
|
GamePlugin, // specific to our game
|
|
ComponentsTestPlugin, // Showcases different type of components /structs
|
|
))
|
|
.run();
|
|
}
|