Search found 5 matches

by teomat
Wed Dec 26, 2012 1:06 pm
Forum: Support and Development
Topic: [SOLVED] Multiple conf.lua files?
Replies: 2
Views: 2321

Re: Multiple conf.lua files?

You can check command line arguments inside conf.lua and then set different parameters based on that. Example conf.lua: local server = arg[1] == '-server' if server then function love.conf(t) -- server config ... end else function love.conf(t) -- client config ... end end
by teomat
Thu Dec 13, 2012 3:51 pm
Forum: General
Topic: Ludum Dare 25 joinings
Replies: 34
Views: 15045

Re: Ludum Dare 25 joinings

I'll be joining again.
This will be my 3rd time joining Ludum Dare and the 3rd time using löve for it.

I think I'm pretty well prepared this time, but that's what I thought last time too.

Good luck everyone! :ultraglee:

Edit: nevermind, I gave up.
by teomat
Thu Jul 12, 2012 7:52 pm
Forum: Support and Development
Topic: love.filesystem.load(file)(arguments)?
Replies: 4
Views: 3053

Re: love.filesystem.load(file)(arguments)?

They are passed in the vararg parameter '...'

Edit: To clarify, you can either push them into a table like

Code: Select all

local args = {...}
and iterate over them
or extract them to local variables like

Code: Select all

local param1, param2 = ...
by teomat
Fri Mar 09, 2012 9:55 pm
Forum: General
Topic: Contributing to löve for University project
Replies: 6
Views: 3474

Re: Contributing to löve for University project

Thanks, guys, I guess that I'll log into IRC tomorrow and talk to the devs. Welcome! There's an Android port project that you could help in (well, actually I don't know if it's a one-man project; you better ask: https://love2d.org/forums/viewforum.php?f=11). Or you could try to port Löve to iOS :D S...
by teomat
Thu Mar 08, 2012 3:59 pm
Forum: General
Topic: Contributing to löve for University project
Replies: 6
Views: 3474

Contributing to löve for University project

Hey everyone, my name is Matteo and I'm Computer Science and Engineering Student at the Free University of Bolzano. A course this semester requires that I find an opensource project written in c++ and contribute something to it. Since I've played around with löve in the past I decided to choose it f...