Search found 17 matches

by ZuccaroMateo
Mon May 23, 2022 9:51 pm
Forum: General
Topic: Paid Job: Looking for Help
Replies: 3
Views: 4700

Re: Paid Job: Looking for Help

Noone answer? I want the job, haha. 5 Years late :(
by ZuccaroMateo
Sun Mar 14, 2021 1:53 am
Forum: General
Topic: Why dont we make “mini jams”?
Replies: 12
Views: 11444

Re: Why dont we make “mini jams”?

I like your idea and would also want to see more of the community/meet people using love! I have never done a jam so short as a few hours though, I feel like I'd be too slow haha. I would be interested in maybe a weekend Jam but I appreciate not everyone has the time for it. If it's a short one the...
by ZuccaroMateo
Thu Mar 11, 2021 1:13 pm
Forum: General
Topic: Why dont we make “mini jams”?
Replies: 12
Views: 11444

Re: Why dont we make “mini jams”?

pgimeno wrote: Wed Mar 10, 2021 12:52 pm There have been previous Löve-specific jams, see https://love2d.org/forums/viewtopic.php?t=83459 and https://love2d.org/forums/viewtopic.php?t=84866 (but it's hard to search for them because of the ridiculous phpBB limit with 3 letter words)
Thanks! So it's not impossible.
by ZuccaroMateo
Wed Mar 10, 2021 1:57 am
Forum: General
Topic: Why dont we make “mini jams”?
Replies: 12
Views: 11444

Re: Why dont we make “mini jams”?

we will join a discord server and start programming for about an hour, following a theme. Also, there will be judges, and everyone has to record their process or stream it. Feel free to make use of the Jams channel and/or the streaming channels in the LÖVE Discord server , if you want. Okay :D. But...
by ZuccaroMateo
Tue Mar 09, 2021 10:39 pm
Forum: General
Topic: Why dont we make “mini jams”?
Replies: 12
Views: 11444

Re: Why dont we make “mini jams”?

RedGuff wrote: Tue Mar 09, 2021 4:27 pm I *love* the idea, but 1 hour is not enough for me.
Okey then, let's do 2 hours. I don't know, I'd like to know people that use love2d too.
by ZuccaroMateo
Mon Mar 08, 2021 1:41 am
Forum: General
Topic: Why dont we make “mini jams”?
Replies: 12
Views: 11444

Re: Why dont we make “mini jams”?

4vZEROv wrote: Sun Mar 07, 2021 1:05 pm I don't like it, some people could steal my code and game ideas.
I mean, it's this idea is to make us a closer together comunnity, not to developt amazing revolutianary ideas. You can be a judge if you want.
by ZuccaroMateo
Mon Mar 08, 2021 1:14 am
Forum: General
Topic: Why dont we make “mini jams”?
Replies: 12
Views: 11444

Re: Why dont we make “mini jams”?

4vZEROv wrote: Sun Mar 07, 2021 1:05 pm I don't like it, some people could steal my code and game ideas.
You literally have a github account with some games. It's an hour of programming, nothing more. It's ok though
by ZuccaroMateo
Sun Mar 07, 2021 2:22 am
Forum: General
Topic: Why dont we make “mini jams”?
Replies: 12
Views: 11444

Why dont we make “mini jams”?

Hello everyone. I was thinking about something... what about making sporadically “mini jams” private to the love community. Here’s the proposal: the organizators of the jam will decide some meeting time, when we will join a discord server and start programming for about an hour, following a theme. A...
by ZuccaroMateo
Thu Mar 04, 2021 2:22 pm
Forum: General
Topic: That facepalm moment when ...
Replies: 11
Views: 9796

Re: That facepalm moment when ...

Tables are passed by reference in lua. As such, if you pass in a table and do some modifications on it, then those changes will persist even after the function finishes. However, in the posted code, when the reset_vector is any non-falsey value, the table the variable "vector" points to d...
by ZuccaroMateo
Wed Mar 03, 2021 3:56 pm
Forum: General
Topic: That facepalm moment when ...
Replies: 11
Views: 9796

Re: That facepalm moment when ...

darkfrei wrote: Sat Feb 06, 2021 9:30 am

Code: Select all

function update_vector (vector, reset_vector)
  if reset_vector then 
    vector = {0,0} 
  end
end

local vector = {1,1}
update_vector (vector, true)
print (vector[1]..' '..vector[2]) -- 1 1
hey, why is it printing 1 1?