The license makes commercial games possible; just that the full Lua source code to your game will be easily viewable due to the way LOVE-based games are distributed. Anyone can open the binary in an archiving app.
Though I guess you could find/invent obfuscation techniques. Kinda futile though.
Search found 2 matches
- Sun Jan 24, 2010 11:52 am
- Forum: General
- Topic: Love = Commercial use?
- Replies: 7
- Views: 5795
- Sat Feb 07, 2009 1:22 am
- Forum: General
- Topic: Code for collisions
- Replies: 20
- Views: 20139
Re: Code for collisions
For box collisions, it can work if you fine-tune the hitbox for each sprite. The hitbox doesn't have to match the size of the entire sprite; it can be much smaller. This is how it was done in classic games, especially when CPU power was limited. The hitbox would cover a small-ish portion of the spri...