Search found 3 matches
- Sun Feb 12, 2017 12:59 pm
- Forum: Support and Development
- Topic: Lua Script Editor Needed
- Replies: 18
- Views: 14922
Re: Lua Script Editor Needed
I prefer Atom for making LÖVE games cuz somebody has already provided a convenient solution. It's a plugin called love-ide. Check this out if you're interested in it.
- Thu Jan 12, 2017 4:18 am
- Forum: General
- Topic: I demand that LÖVE add support of lua 5.3
- Replies: 7
- Views: 11368
Re: I demand that LÖVE add support of lua 5.3
thx for your suggestionzorg wrote:Also, for future reference, you might want to double-check your English dictionary when asking for help somewhere;
To "demand" things from anyone, is, quite frankly, not that nice. You were probably looking for the word "ask" instead.
- Thu Jan 12, 2017 1:25 am
- Forum: General
- Topic: I demand that LÖVE add support of lua 5.3
- Replies: 7
- Views: 11368
I demand that LÖVE add support of lua 5.3
Every version Lua changed a lot. For example, Today I've created a class syntactic sugar in my project. I used _ENV in Lua 5.3 to change the environment variable instead of setfenv in 5.1. I tested it in official compiler and it's OK. However, when I put it in my LÖVE project, it didn't work. The ve...