Search found 2 matches

by urskogshumla
Mon Mar 26, 2018 4:02 pm
Forum: General
Topic: LOVE users map
Replies: 182
Views: 118841

Re: LOVE users map

That is awesome and a bit scary! Pin me down at Öjebyn, Sweden - in the north next to Piteå. 🎈
by urskogshumla
Sun Dec 10, 2017 4:06 am
Forum: General
Topic: What's everyone working on? (tigsource inspired)
Replies: 1791
Views: 1512540

Re: What's everyone working on? (tigsource inspired)

-- init mouse = { up = {}, pressed = {}, down = {}, released = {} } -- update for i = 1, 2, 1 do local active = love.mouse.isDown(i) mouse.pressed[i] = active and not mouse.down[i] mouse.released[i] = not active and not mouse.up[i] mouse.up[i] = not active mouse.down[i] = active end Hacked together...