diff --git a/Assets/Maps/DM1/DM1.blend b/Assets/Maps/DM1/DM1.blend index 938f9bc..5ed2cce 100644 Binary files a/Assets/Maps/DM1/DM1.blend and b/Assets/Maps/DM1/DM1.blend differ diff --git a/Assets/Maps/DM1/DM1.glb b/Assets/Maps/DM1/DM1.glb index 63f2bb2..a56f410 100644 Binary files a/Assets/Maps/DM1/DM1.glb and b/Assets/Maps/DM1/DM1.glb differ diff --git a/Player.gd b/Player.gd index 910ef13..7a0ed88 100644 --- a/Player.gd +++ b/Player.gd @@ -117,6 +117,7 @@ remote func walk(direction: Vector2): debug.text += "\nvelocity: " + String(velocity) debug.text += "\nis_on_floor(): " + String(is_on_floor()) debug.text += "\nhealth: " + String(health) + debug.text += "\njetpack: " + String(jetpack_fuel) velocity.x = lerp(velocity.x, walkVelocity.rotated(- self.rotation.y).y, interpolation) velocity.z = lerp(velocity.z, - walkVelocity.rotated(- self.rotation.y).x, interpolation)