Search found 3 matches
- Sun Dec 06, 2015 11:51 pm
- Forum: Support and Development
- Topic: How i can cet the system volume with löve
- Replies: 5
- Views: 2822
How i can cet the system volume with löve
Hey, i want to program something like an equalizer with bars that react to music(I'am sure you all know what i mean). But i don't want that the qualizer works only with music which gets imported to the program, but rather with any sound of the system(master volume). e.g that the equalizer react to m...
- Sun Sep 27, 2015 7:33 pm
- Forum: Support and Development
- Topic: Trying to make my own menu(issues)
- Replies: 3
- Views: 2174
Re: Trying to make my own menu(issues)
you never load the menu again (only changing state) and you have some initialization (for player) in the LOAD_MENU in case of State == "Playing" so try: function StateChanger(dt) if love.keyboard.isDown("1") and State == "Menu" then State = "Playing" LOAD_MEN...
- Sun Sep 27, 2015 6:03 pm
- Forum: Support and Development
- Topic: Trying to make my own menu(issues)
- Replies: 3
- Views: 2174
Trying to make my own menu(issues)
I try to make my own menu in lua2d, and with menu i mean diffrent gamestates :cool: . For example: When the Gamestate is "Menu" the menu should show up, if the Gamestate is "Playing", the game should start. I found some examples in the amazing internet, but i had my own idea, whi...