Merge branch 'melting' of github.com:Ewpratten/ludum-dare-50 into melting

This commit is contained in:
Silas Bartha 2022-04-03 19:58:17 -04:00
commit 95eb21bdb1
No known key found for this signature in database
GPG Key ID: 9323054A4EA1EA6C

View File

@ -70,8 +70,8 @@ impl PlayableScene {
Self {
has_updated_discord_rpc: false,
player_start_position,
world_map: map_renderer,
player,
world_map: map_renderer,
camera: raylib::camera::Camera2D {
target: raylib::math::Vector2 { x: 0.0, y: 0.0 },
offset: raylib::math::Vector2 { x: 0.0, y: 0.0 },
@ -352,6 +352,8 @@ impl PlayableScene {
player.size -= 0.001;
player.size -= 0.001;
self.update_camera(raylib);
}