1
0
Fork 0

Update hand system (that doesn't work)

This commit is contained in:
Alexey 2025-02-17 17:48:24 +03:00
commit 222bc498f1
3 changed files with 90 additions and 8 deletions

View file

@ -1,12 +1,12 @@
use bevy::prelude::*;
use evolution_rs::{
properties::plugin::BasePropertiesPlugin,
setup
setup, test_setup_hand, update_hand_dimensions
};
fn main() {
App::new()
.add_plugins((DefaultPlugins,BasePropertiesPlugin))
.add_systems(Startup, setup)
.add_systems(Startup, (setup, test_setup_hand, update_hand_dimensions).chain())
.run();
}