mirror of
https://github.com/kaosat-dev/Blender_bevy_components_workflow.git
synced 2024-11-22 20:00:53 +00:00
09d1218942
* fixed & improved the Blenvy crate README * make a few things conditional on whether hot reload is enabled or not * cleaned up very verbose debug messages * a few renames & coherency pass * cleanups cleanups, cleanups !
23 lines
490 B
Rust
23 lines
490 B
Rust
use bevy::prelude::*;
|
|
|
|
mod core;
|
|
use crate::core::*;
|
|
|
|
mod game;
|
|
use game::*;
|
|
|
|
mod test_components;
|
|
use test_components::*;
|
|
|
|
fn main() {
|
|
App::new()
|
|
.add_plugins((
|
|
DefaultPlugins.set(AssetPlugin::default()),
|
|
// our custom plugins
|
|
CorePlugin, // reusable plugins
|
|
GamePlugin, // specific to our game
|
|
ComponentsTestPlugin, // Showcases different type of components /structs
|
|
))
|
|
.run();
|
|
}
|