Search found 3 matches
- Sun Jul 26, 2020 5:42 pm
- Forum: General
- Topic: Mute all sounds in game
- Replies: 3
- Views: 3282
Re: Mute all sounds in game
Hey, thanks a lot guys both the methods worked! And can you tell me about the libraries that you were talking about if you know any. Thanks again!
- Sun Jul 26, 2020 4:08 pm
- Forum: General
- Topic: Mute all sounds in game
- Replies: 3
- Views: 3282
Mute all sounds in game
Hi there! So I'm making a game where I have made a table " gSounds " which has all the sounds required. Now, I want to add a feature which mutes all the sounds in the game. But if I do gSounds:setVolume(0) then it raises an error. I can individually set the volumes of all the sounds to zer...
- Wed Jul 01, 2020 5:31 pm
- Forum: General
- Topic: Blurred fonts
- Replies: 8
- Views: 7837
Re: Blurred fonts
Well there's one workaround... You can use love.graphics.scale But still you will have to keep the font size of a multiple of 16 Here's how to do it love.graphics.setDefaultFilter('nearest', 'nearest') love.graphics.push() love.graphics.scale(0.5, 0.5) -- by whatever size you want to rescale love.gr...