the cave renders

This commit is contained in:
Evan Pratten 2021-04-24 14:10:49 -04:00
parent 3f08d7e93f
commit b73ba2cf0e
2 changed files with 13 additions and 3 deletions

View File

@ -36,7 +36,7 @@ impl InGameScreen {
height: game_core.resources.cave_mid_layer.height as f32, height: game_core.resources.cave_mid_layer.height as f32,
}; };
let world_bounds = Rectangle { let world_bounds = Rectangle {
x: -100.0, x: -200.0,
y: -100.0, y: -100.0,
width: game_core.resources.cave_mid_layer.width as f32, width: game_core.resources.cave_mid_layer.width as f32,
height: game_core.resources.cave_mid_layer.height as f32, height: game_core.resources.cave_mid_layer.height as f32,
@ -49,7 +49,10 @@ impl InGameScreen {
context_2d.draw_texture_rec( context_2d.draw_texture_rec(
&game_core.resources.cave_mid_layer, &game_core.resources.cave_mid_layer,
source_bounds, source_bounds,
Vector2::zero(), Vector2 {
x: world_bounds.x,
y: world_bounds.y
},
Color::WHITE, Color::WHITE,
); );
} }

View File

@ -142,9 +142,16 @@ pub fn update_player_movement(
draw_handle.get_world_to_screen2D(game_core.player.position, game_core.master_camera); draw_handle.get_world_to_screen2D(game_core.player.position, game_core.master_camera);
// Camera only moves if you get close to the edge of the screen // Camera only moves if you get close to the edge of the screen
if player_screen_position.distance_to(window_center).abs() > (window_center.y - 40.0) { if player_screen_position.distance_to(window_center).abs() > 100.0 {
game_core.master_camera.target += player_real_movement; game_core.master_camera.target += player_real_movement;
} }
// // Clamp camera target y to 0
// if game_core.master_camera.target.y < -100.0 {
// game_core.master_camera.target.y = -100.0;
// }
} }
pub fn render_player(context_2d: &mut RaylibMode2D<RaylibDrawHandle>, game_core: &mut GameCore) { pub fn render_player(context_2d: &mut RaylibMode2D<RaylibDrawHandle>, game_core: &mut GameCore) {