Search found 3087 matches

by slime
Mon Apr 25, 2011 6:37 pm
Forum: Games and Creations
Topic: Snayke - Out now! Version 1.1, soundtrack available
Replies: 196
Views: 139497

Re: wormbearpig - Snake clone [version 1.1]

Minor revision: once a background reaches the maximum number of changes it can go through, it will now switch to a different background instead of looping back and doing the changes over again.
by slime
Mon Apr 25, 2011 3:13 pm
Forum: General
Topic: table to math
Replies: 6
Views: 2118

Re: table to math

Something like

Code: Select all

local mathstr = table.concat(mathtbl)
local sum = loadstring("return "..mathstr)()
might work.
by slime
Sun Apr 24, 2011 11:27 pm
Forum: Games and Creations
Topic: Snayke - Out now! Version 1.1, soundtrack available
Replies: 196
Views: 139497

Re: wormbearpig - Snake clone

Between Portal 2, school and Easter I didn't manage to get a lot done last week, but now I have a new version! Changes in version 1.1 • slow, medium and fast speeds available (z/x/c keys respectively) - I still need to make the medium/slow speeds look smoother, though • controls are now displayed in...
by slime
Sat Apr 23, 2011 7:52 pm
Forum: General
Topic: Portal 2
Replies: 5
Views: 5449

Re: Portal 2

I love it. A lot. Valve is awesome. :D

by slime
Mon Apr 18, 2011 9:00 pm
Forum: Games and Creations
Topic: Monopoly game (demo)
Replies: 17
Views: 4443

Re: Monopoly game (demo)

I think that's just the Lua GC doing its job.

Good work on the game. :D
by slime
Sun Apr 17, 2011 5:06 pm
Forum: General
Topic: Possible to modify Love in this Way?
Replies: 27
Views: 6139

Re: Possible to modify Love in this Way?

Robin: why hasn't it been updated in 5 years? It seems to support Irrlicht 1.1, whereas the version on the Irrlicht site is 1.7.2.
by slime
Sun Apr 17, 2011 1:35 am
Forum: Games and Creations
Topic: Snayke - Out now! Version 1.1, soundtrack available
Replies: 196
Views: 139497

Re: wormbearpig - Snake clone

Aww phooey, I liked those ones the best! :P
by slime
Sat Apr 16, 2011 10:24 pm
Forum: Games and Creations
Topic: Snayke - Out now! Version 1.1, soundtrack available
Replies: 196
Views: 139497

Re: wormbearpig - Snake clone

It draws the tile grid to a framebuffer while setting the current colour using various functions that take the x/y positions of the tiles. When it transitions between different backgrounds it first draws the new background to a different framebuffer with 0 alpha and then slowly fades it in while fad...
by slime
Sat Apr 16, 2011 9:06 pm
Forum: Games and Creations
Topic: Snayke - Out now! Version 1.1, soundtrack available
Replies: 196
Views: 139497

Re: wormbearpig - Snake clone

I'll see about making slow/medium/fast speeds. The problem with a slower speed though is that it looks pretty 'choppy', not sure how to fix that. The next version will probably make the background change a bit every 100 score or so. A constantly changing background would be amazing, but I don't quit...