Search found 170 matches

by Qcode
Mon Jun 25, 2012 12:41 am
Forum: General
Topic: Looking for a book
Replies: 4
Views: 3091

Re: Looking for a book

The start of a video series by sockmunkee, he's here on the forums though I haven't seen him for a while. This teaches you basics like setting up your first game and then starts teaching you more advanced stuff like buttons and menus.

by Qcode
Sat Jun 23, 2012 7:20 pm
Forum: Support and Development
Topic: Parallax Scrolling
Replies: 10
Views: 4346

Re: Parallax Scrolling

Your tables shouldn't be set in love.draw() tables should be set in love.load() Instead if having this function map_draw() grass = { sprite = love.graphics.newImage("graphics/grass.png"), x = 0 } mountain1 = { sprite = love.graphics.newImage("graphics/mountain1.png"), x = 0 } mou...
by Qcode
Fri Jun 15, 2012 9:05 pm
Forum: General
Topic: Avatars: OBEY!
Replies: 763
Views: 1005784

Re: Avatars: OBEY!

I think I may have seen this avatar before but oh well. I shall obey.
by Qcode
Thu Jun 14, 2012 3:38 am
Forum: Support and Development
Topic: Rubber Piggy error
Replies: 3
Views: 1486

Re: Rubber Piggy error

You probably zipped the package wrong. You need to zip the contents of the folder (as in main.lua and stuff) not the folder.
by Qcode
Tue Jun 12, 2012 1:57 pm
Forum: Support and Development
Topic: Distrubuting
Replies: 8
Views: 3073

Re: Distrubuting

You can use .love's though less convenient. I say always distribute a .love. It's almost zero extra work for you, since you need to make a .love anyway for fused distribution, and it is much more convenient for users that already have LÖVE. And even more so for users that have SELÖVE: they will not...
by Qcode
Tue Jun 12, 2012 1:03 am
Forum: Support and Development
Topic: Distrubuting
Replies: 8
Views: 3073

Re: Distrubuting

You can use .love's though less convenient. To make a .app download the mac osx. There should be a folder called love. Open it. Go into contents, then resources. Place your .love into the resources folder. Now simply give that folder to mac computers and that will work.
by Qcode
Mon Jun 11, 2012 2:17 pm
Forum: General
Topic: System Language Poll
Replies: 27
Views: 11513

Re: System Language Poll

Code: Select all

OS: Mac OSX 10.6.8
EXPECTED: English
CTYPE:
LANG:
No detection at all. Ran in 0.7.2 and 0.8.
by Qcode
Mon Jun 11, 2012 1:58 pm
Forum: Support and Development
Topic: Distrubuting
Replies: 8
Views: 3073

Re: Distrubuting

1.ZLIB license. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. So you don't have to say that it's made wit...
by Qcode
Wed Jun 06, 2012 3:04 am
Forum: Support and Development
Topic: .exe does not work in windows xp
Replies: 11
Views: 10563

Re: .exe does not work in windows xp

Your images are normal sizes, right? Not huge like above 1000 pixels?
by Qcode
Sun Jun 03, 2012 6:54 pm
Forum: Support and Development
Topic: I need help with collisions
Replies: 4
Views: 2202

Re: I need help with collisions

First you should edit your post instead if double posting, most find it annoying. Second here's a basic collision check. function checkcollision(x1, y1, w1, h1, x2, y2, w2, h2) if x1 > (x2 + w2) or (x1 + w1) < x2 then return false end if y1 > (y2 + h2) or (y1 + h1) < y2 then return false end return ...