From e61f67ee30be305836f9e9543dd14d8ec3f7d143 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sat, 2 Oct 2021 23:38:28 -0400 Subject: [PATCH] eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee --- game/src/scenes/ingame_scene/world.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/game/src/scenes/ingame_scene/world.rs b/game/src/scenes/ingame_scene/world.rs index f6893ae..e0b9242 100644 --- a/game/src/scenes/ingame_scene/world.rs +++ b/game/src/scenes/ingame_scene/world.rs @@ -12,7 +12,7 @@ use raylib::prelude::*; use tracing::trace; pub const WORLD_LEVEL_X_OFFSET: f32 = 200.0; -pub const APPEAR_FADE_DISTANCE: f32 = 15.0; +pub const APPEAR_FADE_DISTANCE: f32 = 16.0; impl WorldSpaceRender for InGameScreen { fn render_world_space( @@ -44,7 +44,7 @@ impl WorldSpaceRender for InGameScreen { .iter() .map(|zone| { Vector2::new( - zone.x + WORLD_LEVEL_X_OFFSET, + zone.x + WORLD_LEVEL_X_OFFSET + (zone.width / 2.0), zone.y - cur_level.platform_tex.height as f32, ) .distance_to(self.player.position) as i32