Search found 5 matches
- Fri Aug 21, 2020 1:48 am
- Forum: Support and Development
- Topic: love.event.poll() and quit event
- Replies: 3
- Views: 2601
Re: love.event.poll() and quit event
Oh, I found the answer for my question. Actually, this is the exitstatus that you can use in the love.event.quit function.
- Fri Aug 21, 2020 1:34 am
- Forum: Support and Development
- Topic: love.event.poll() and quit event
- Replies: 3
- Views: 2601
Re: love.event.poll() and quit event
Yes, this is what I observed on my windows machine as well. Maybe some cross platform stuff? Anyways, if this doesn't have a real purpose anymore it should be removed from the default game loop.
- Fri Aug 21, 2020 1:06 am
- Forum: Support and Development
- Topic: love.event.poll() and quit event
- Replies: 3
- Views: 2601
love.event.poll() and quit event
Hi there o/ I'm currently working on a new UI library for love2d. I'm implementing a custom event dispatcher for my new library and notice something in the love.run default implementation. I'm using the version 11.3 The thing that bothers me is the following code line: if name == "quit" th...
- Sun May 19, 2019 4:29 am
- Forum: Support and Development
- Topic: Init.lua file in Android
- Replies: 3
- Views: 3478
Re: Init.lua file in Android
I can't believe that... After around 9 years experience with different programming languages... And then I do such a banal mistake...
Yes, I forget about that and was trying around 6 hours now to figure out how to load the modules...
Thank you - and shame on me *facepalm*
Yes, I forget about that and was trying around 6 hours now to figure out how to load the modules...
Thank you - and shame on me *facepalm*
- Sun May 19, 2019 2:59 am
- Forum: Support and Development
- Topic: Init.lua file in Android
- Replies: 3
- Views: 3478
Init.lua file in Android
Hello o/ I had an issue with starting a love file under Android. It couldn't find the library that I wanted to require. After some testing I figured out that you can't load the Init.lua for a module. For example, that's my filetree: main.lua -- mylib ---- Init.lua ---- somestuff.lua The main.lua con...