Search found 17 matches
- Mon May 23, 2022 9:51 pm
- Forum: General
- Topic: Paid Job: Looking for Help
- Replies: 3
- Views: 5117
Re: Paid Job: Looking for Help
Noone answer? I want the job, haha. 5 Years late
- Sun Mar 14, 2021 1:53 am
- Forum: General
- Topic: Why dont we make “mini jams”?
- Replies: 12
- Views: 12163
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...
- Thu Mar 11, 2021 1:13 pm
- Forum: General
- Topic: Why dont we make “mini jams”?
- Replies: 12
- Views: 12163
Re: Why dont we make “mini jams”?
Thanks! So it's not impossible.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)
- Wed Mar 10, 2021 1:57 am
- Forum: General
- Topic: Why dont we make “mini jams”?
- Replies: 12
- Views: 12163
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...
- Tue Mar 09, 2021 10:39 pm
- Forum: General
- Topic: Why dont we make “mini jams”?
- Replies: 12
- Views: 12163
- Mon Mar 08, 2021 1:41 am
- Forum: General
- Topic: Why dont we make “mini jams”?
- Replies: 12
- Views: 12163
- Mon Mar 08, 2021 1:14 am
- Forum: General
- Topic: Why dont we make “mini jams”?
- Replies: 12
- Views: 12163
- Sun Mar 07, 2021 2:22 am
- Forum: General
- Topic: Why dont we make “mini jams”?
- Replies: 12
- Views: 12163
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...
- Thu Mar 04, 2021 2:22 pm
- Forum: General
- Topic: That facepalm moment when ...
- Replies: 11
- Views: 10190
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...
- Wed Mar 03, 2021 3:56 pm
- Forum: General
- Topic: That facepalm moment when ...
- Replies: 11
- Views: 10190
Re: That facepalm moment when ...
hey, why is it printing 1 1?darkfrei wrote: ↑Sat Feb 06, 2021 9:30 amCode: 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