Search found 5 matches

by Yjuq
Fri Aug 21, 2020 1:48 am
Forum: Support and Development
Topic: love.event.poll() and quit event
Replies: 3
Views: 2341

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.
by Yjuq
Fri Aug 21, 2020 1:34 am
Forum: Support and Development
Topic: love.event.poll() and quit event
Replies: 3
Views: 2341

Re: love.event.poll() and quit event

Xii wrote: Fri Aug 21, 2020 1:28 am The value of a appears to be nil in this event. No idea what it's for...
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.
by Yjuq
Fri Aug 21, 2020 1:06 am
Forum: Support and Development
Topic: love.event.poll() and quit event
Replies: 3
Views: 2341

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...
by Yjuq
Sun May 19, 2019 4:29 am
Forum: Support and Development
Topic: Init.lua file in Android
Replies: 3
Views: 3270

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*
by Yjuq
Sun May 19, 2019 2:59 am
Forum: Support and Development
Topic: Init.lua file in Android
Replies: 3
Views: 3270

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...