Do you wanna save before quitting?
Yes / No / Cancel
Sounds good to me... Also there is lua-nativefiledialog which I have compiled and used fine with LÖVE.
Check this post for info on save dialogs
Search found 1006 matches
- Wed Feb 22, 2017 1:45 pm
- Forum: Support and Development
- Topic: bugs in showMessageBox
- Replies: 13
- Views: 4702
- Wed Feb 22, 2017 1:44 pm
- Forum: Games and Creations
- Topic: Tree Simulation
- Replies: 20
- Views: 9182
Re: Tree Simulation
Well the jam was restricted to games being developed during the jam entirely so if you created it some times ago that would have been cheating.
Also really nice I like the climate + night cycle thing
- Wed Feb 22, 2017 1:26 pm
- Forum: General
- Topic: Separate state files
- Replies: 11
- Views: 7235
Re: Separate state files
Yeah, the propagate is a good idea and I think I'll probably implement it in ScreenManager (I hold a fork and have contributed to rm-code repository) Currently ScreenManager goes upward for drawing, downwards for some input and only to the top of the stack on the rest, so It's really unpredictable w...
- Wed Feb 22, 2017 12:50 pm
- Forum: Support and Development
- Topic: Help: Can't install Löve2D installer and Computer think installer is a virus.
- Replies: 15
- Views: 4552
Re: Help: Can't install Löve2D installer and Computer think installer is a virus.
I don't. I run everything from Atom, except from the stuff I get from here which are most likely .love files. But Shift + Right Click > Command Line > love . Is always at my disposal, and I don't care if it's cmd.exe or whatever I just need to execute that command and nothing else anyway... So cmd d...
- Wed Feb 22, 2017 12:44 pm
- Forum: Libraries and Tools
- Topic: GOOi, an Android-Oriented GUI Library
- Replies: 133
- Views: 85551
Re: GÖÖi, an Android-Oriented GUI Library
Post a .love file with an example of the problem
- Wed Feb 22, 2017 2:56 am
- Forum: General
- Topic: Separate state files
- Replies: 11
- Views: 7235
Re: Separate state files
The main benefit of ScreenManager and Hump states or other state systems is the stack and how you can easily push, pop and switch, having more than one active state and so on... But yeah implementing your own should be fairly simple
- Wed Feb 22, 2017 2:55 am
- Forum: Support and Development
- Topic: LUBE networking not working
- Replies: 1
- Views: 736
Re: LUBE networking not working
Are you on windows? Try using the lovec.exe executable, if that doesnt work try adding this line to the top of your conf.lua or main.lua io.out:setvbuf('no') Also there has been some updates to LUBE and it's now called Grease so I recommend you update If that doesn't work maybe you should check the ...
- Wed Feb 22, 2017 2:46 am
- Forum: Support and Development
- Topic: Help: Can't install Löve2D installer and Computer think installer is a virus.
- Replies: 15
- Views: 4552
Re: Help: Can't install Löve2D installer and Computer think installer is a virus.
Having LÖVE in the PATH has some advantages, like running "love ." in any folder and getting your game, instead of zipping and renaming to .love or moving the folder onto the executable. It's also helpful to easily set up the run command on whatever code editor you are using, since is the command is...
- Wed Feb 22, 2017 12:36 am
- Forum: Support and Development
- Topic: Help: Can't install Löve2D installer and Computer think installer is a virus.
- Replies: 15
- Views: 4552
Re: Help: Can't install Löve2D installer and Computer think installer is a virus.
You go to "your pc" > preferences > advanced configuration > environment variables and search for the one called PATH and add the directory where love.exe is
- Wed Feb 22, 2017 12:22 am
- Forum: General
- Topic: Separate state files
- Replies: 11
- Views: 7235
Re: Separate state files
I should recommend ScreenManager