Page 5 of 5

Re: LÖVE 0.10.1 released

Posted: Mon Jul 18, 2016 11:23 am
by pgimeno
Inny wrote:Aren't BMP and TGA simple enough that you can implement them yourself in Lua? here's the spec for bmp,
Yes, I've used uncompressed, top-down TGA for many applications, including palette images back in the VGA times. The only thing to watch out for is the BGR order rather than RGB.

BMP is a bit more complicated, it's especially picky about padding. The newest version supporting alpha is a mess.

Re: LÖVE 0.10.1 released

Posted: Thu Aug 25, 2016 9:27 pm
by raidho36
Not exactly sure it's right place but anyway.

Please add in upcoming versions a function that returns physical DPI of the screen from OS. This feature has substantial value for mobile games because of the way you interact with them. Remember to return values for both axes, they're usually same but that's not necessarily the case. No need to break perfectly functional algorithm by removing edge case handling just because edge cases are rare.

Re: LÖVE 0.10.1 released

Posted: Fri Oct 07, 2016 2:23 am
by programmed_sheep
Great update as always! Are there any plans to update to Lua 5.3?

Re: LÖVE 0.10.1 released

Posted: Fri Oct 07, 2016 2:27 am
by Jasoco
Löve uses LuaJIT now. Not plain Lua.

Re: LÖVE 0.10.1 released

Posted: Fri Oct 07, 2016 5:52 am
by Positive07
Jasoco wrote:Löve uses LuaJIT now. Not plain Lua.
Which offers INCREDIBLE perormance boost over simple Lua on most (if not all) devices