the cave renders
This commit is contained in:
parent
3f08d7e93f
commit
b73ba2cf0e
@ -36,7 +36,7 @@ impl InGameScreen {
|
||||
height: game_core.resources.cave_mid_layer.height as f32,
|
||||
};
|
||||
let world_bounds = Rectangle {
|
||||
x: -100.0,
|
||||
x: -200.0,
|
||||
y: -100.0,
|
||||
width: game_core.resources.cave_mid_layer.width as f32,
|
||||
height: game_core.resources.cave_mid_layer.height as f32,
|
||||
@ -49,7 +49,10 @@ impl InGameScreen {
|
||||
context_2d.draw_texture_rec(
|
||||
&game_core.resources.cave_mid_layer,
|
||||
source_bounds,
|
||||
Vector2::zero(),
|
||||
Vector2 {
|
||||
x: world_bounds.x,
|
||||
y: world_bounds.y
|
||||
},
|
||||
Color::WHITE,
|
||||
);
|
||||
}
|
||||
|
@ -142,9 +142,16 @@ pub fn update_player_movement(
|
||||
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
|
||||
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;
|
||||
}
|
||||
|
||||
// // 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) {
|
||||
|
Reference in New Issue
Block a user