diff --git a/src/actor.rs b/src/actor.rs index 9d306a4..c6acd05 100644 --- a/src/actor.rs +++ b/src/actor.rs @@ -17,7 +17,6 @@ impl Plugin for ActorPlugin { pub struct Actor { pub hp: f32, pub m: f32, // mass - pub pos: Vec3, // position pub v: Vec3, // velocity // TODO: rotation } @@ -27,7 +26,6 @@ impl Default for Actor { Self { hp: 100.0, m: 100.0, - pos: Vec3::ZERO, v: Vec3::ZERO, } }