Search found 137 matches

by Xii
Mon May 03, 2021 4:42 pm
Forum: General
Topic: What is your development cycle and how to avoid 'defeat'
Replies: 9
Views: 7904

Re: What is your development cycle and how to avoid 'defeat'

4vZEROv wrote: Sun May 02, 2021 5:22 pm What a nice way to burn out !
Can you expand on this? Why would that lead to burnout?
by Xii
Mon May 03, 2021 4:36 pm
Forum: Support and Development
Topic: Coordinates for lines vs points (and pixel grid alignment for points)
Replies: 20
Views: 18333

Re: Coordinates for lines vs points (and pixel grid alignment for points)

if you specify (2,2) for drawing a primitive of any type, be it a point, line or triangle, then pixel [2,2] in the surface should be unconditionally targetted. There is no "pixel [2,2]". At coordinate [2,2] is the upper left corner of the square region covering [[2,2],[3,3]]. The exact ce...
by Xii
Sun May 02, 2021 2:34 pm
Forum: General
Topic: What is your development cycle and how to avoid 'defeat'
Replies: 9
Views: 7904

Re: What is your development cycle and how to avoid 'defeat'

Work has to be the first thing you do when you wake up.

The instant you watch a video or play a game you'll do nothing else all day.

Try doing a little work every day. Make it a habit. Then start pushing the length and scope up.
by Xii
Wed Apr 21, 2021 10:33 am
Forum: Support and Development
Topic: Getting a server for a love2d game
Replies: 31
Views: 37748

Re: Getting a server for a love2d game

Check your spelling. receive is a tricky word to get right. re-ce-ive
by Xii
Wed Apr 14, 2021 11:15 am
Forum: Libraries and Tools
Topic: An Easy to Integrate In-Game Console
Replies: 6
Views: 18611

Re: An Easy to Integrate In-Game Console

Looks simple, clean, and very useful, indeed. Thanks for sharing, will probably use. :)
by Xii
Mon Apr 12, 2021 9:52 pm
Forum: Support and Development
Topic: Multidimentional arrays/Tables
Replies: 14
Views: 9939

Re: Multidimentional arrays/Tables

milon wrote: Mon Apr 12, 2021 8:07 pm You can also use the # prefix to get the size of a table
Note though that it only counts the elements from index 1 up until the first nil.
by Xii
Sun Apr 11, 2021 8:59 pm
Forum: General
Topic: SDL_GameControllerDB on Ubuntu
Replies: 2
Views: 3431

Re: SDL_GameControllerDB on Ubuntu

I'm not going to watch a video to see the code. Post it.
by Xii
Sat Apr 10, 2021 11:34 am
Forum: Support and Development
Topic: my love2d is broken
Replies: 6
Views: 4940

Re: my love2d is broken

Yeah, works for me.
by Xii
Fri Apr 09, 2021 10:30 pm
Forum: Support and Development
Topic: my love2d is broken
Replies: 6
Views: 4940

Re: my love2d is broken

Post your code. The smallest, simplest example of a project that crashes for you.
by Xii
Thu Apr 08, 2021 9:59 pm
Forum: Support and Development
Topic: Optional joystick controls
Replies: 3
Views: 6092

Re: Optional joystick controls

if (joystick and joystick:isGamepadDown("dpleft")) or love.keyboard.isDown("left") then Most programming languages have short-circuiting comparison operators. In (A and B) , A is evaluated first, and if it's false (or nil here), the expression immediately returns false because i...