Search found 796 matches

by thelinx
Sun Dec 13, 2009 4:05 pm
Forum: Libraries and Tools
Topic: Mashmeter
Replies: 14
Views: 6316

Re: Mashmeter

7.7 with spacebar.
by thelinx
Sun Dec 13, 2009 4:03 pm
Forum: General
Topic: notepad++ and love - a suggestion
Replies: 10
Views: 8439

Re: notepad++ and love - a suggestion

Yeah, back when I still used windows I had this folder layout:

Code: Select all

Love projects/
  Game1/
  Game2/
  Shortcut to LOVE.exe
Then to try a game I'd just drag and drop the folder on the shortcut.
by thelinx
Sat Dec 12, 2009 8:14 pm
Forum: General
Topic: Announcing LOVEFEST!!!
Replies: 12
Views: 5891

Re: Announcing LOVEFEST!!!

10 days is too short.
by thelinx
Sat Dec 12, 2009 2:22 pm
Forum: Support and Development
Topic: User Define keys in a game
Replies: 22
Views: 12087

Re: User Define keys in a game

Robin wrote:The code TheLinx supplied only works if goForward and his friends return a function
oops :shock:
by thelinx
Sat Dec 12, 2009 10:30 am
Forum: General
Topic: What script editor do you use?
Replies: 13
Views: 11662

Re: What script editor do you use?

dtaylorl wrote:Geany on Ubuntu.
This.
by thelinx
Sat Dec 12, 2009 10:20 am
Forum: Support and Development
Topic: User Define keys in a game
Replies: 22
Views: 12087

Re: User Define keys in a game

You can make a table called bindings or something similar: bindings = { [love.key_w] = goForward, [love.key_s] = goBack, [love.key_a] = steerLeft, [love.key_d] = steerRight -- the values are functions! } Note that if you're using LÖVE 0.6.0, use "w", "s", "a" and "...
by thelinx
Fri Dec 11, 2009 9:34 pm
Forum: Support and Development
Topic: Ubuntu Build Problems
Replies: 4
Views: 4056

Re: Ubuntu Build Problems

Yes, you should build from source. First, make sure you have mercurial and LÖVE's dependencies. sudo apt-get install mercurial libdevil1c2 libfreetype6 libgl1-mesa-glx liblua5.1-0 libphysfs-1.0-0 libsdl1.2debian libopenal1 libogg0 libvorbis0a libvorbisfile3 libflac8 libflac++6 libmodplug0c2 libmpg12...
by thelinx
Fri Dec 11, 2009 9:21 pm
Forum: Support and Development
Topic: Making the switch to .6?
Replies: 11
Views: 6720

Re: Making the switch to .6?

Constants No more love.key_a! Just use "a", "escape", "lshift", et.c.! Main callbacks The main callbacks are now in the love table, e.g. love.load() instead of load() love.system is gone! not sure what to say about this love.filesystem is now 100% more Lua-ish! You can...
by thelinx
Fri Dec 11, 2009 9:04 pm
Forum: General
Topic: New to LUA and LOVE
Replies: 17
Views: 11038

Re: New to LUA and LOVE

I hate to be a meanie but Lua isn't an acronym -- it's just "Lua".
by thelinx
Fri Dec 11, 2009 1:10 pm
Forum: Libraries and Tools
Topic: LOVEshow a simple image viewer
Replies: 23
Views: 6617

Re: LOVEshow a simple image viewer

Nice.

But you should flip the sliding direction, imo.