Improve lighting a bit

This commit is contained in:
crumblingstatue 2023-04-07 23:05:24 +02:00
parent c78123ccd8
commit 178babdec9
3 changed files with 3 additions and 3 deletions

View file

@ -12,7 +12,7 @@ impl Res {
pub fn load() -> anyhow::Result<Self> {
Ok(Self {
tile_atlas: Texture::from_file("res/tiles.png")?,
light_texture: Texture::from_file("res/lightcircle.png")?,
light_texture: Texture::from_file("res/light2.png")?,
surf_music: Music::from_file("res/music.ogg").unwrap(),
und_music: Music::from_file("res/cave2.ogg").unwrap(),
})