From 1e7fc6030bc57a9132a10df5449c0ff240fb9b2b Mon Sep 17 00:00:00 2001 From: hut Date: Mon, 18 Mar 2024 03:20:22 +0100 Subject: [PATCH] cleanup --- src/actor.rs | 2 -- 1 file changed, 2 deletions(-) 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, } }