Search found 129 matches

by napco
Sun Dec 13, 2009 10:28 pm
Forum: Libraries and Tools
Topic: Avalon.
Replies: 19
Views: 23175

Re: Avalon.

Great! 17/12... I'm looking forward to it!!
by napco
Sat Dec 05, 2009 11:34 am
Forum: General
Topic: Happy birthday to... aka the birthday topic!
Replies: 80
Views: 25667

Re: Happy birthday to... aka the birthday topic!

Whoa, ehm... Think i've missed it... But better late than never... HAPPY BIRTHDAY RUDE!
by napco
Sun Nov 29, 2009 1:57 am
Forum: General
Topic: What script editor do you use?
Replies: 13
Views: 11648

Re: What script editor do you use?

Started with notepad (yes, the default one), tried programmer's notepad and now i use notepad++
by napco
Fri Nov 27, 2009 11:26 am
Forum: Support and Development
Topic: Loading external graphics outside of love?
Replies: 3
Views: 3216

Re: Loading external graphics outside of love?

You can load files from 2 places only: the .love file and the save directory. You can get the path to this folder by using the command:

Code: Select all

love.filesystem.getSaveDirectory()
by napco
Tue Nov 24, 2009 2:00 pm
Forum: General
Topic: New to LUA and LOVE
Replies: 17
Views: 11034

Re: New to LUA and LOVE

By the way, i've spent some days learning pygame, and i've noticed that LOVE is faster and better documented. With LOVE you can also make standalone games.
by napco
Tue Nov 24, 2009 12:38 am
Forum: General
Topic: 0.6.0 Update
Replies: 221
Views: 104701

Re: 0.6.0 Update

Robin wrote:I actually did a shitload of improving potato entries today. How about the rest of you?
I think i'll pass... I'm not english, so i would probably write rubbish...
by napco
Mon Nov 23, 2009 11:43 am
Forum: Support and Development
Topic: Compositing?
Replies: 3
Views: 3900

Re: Compositing?

Well, no in LOVE 0.5.0 and yes, i think, in 0.6.0. The problem is that the potato (0.6.0 documentation) is still incomplete.
by napco
Sun Nov 22, 2009 2:54 pm
Forum: Support and Development
Topic: i'll LOVE it if someone helps....
Replies: 4
Views: 2956

Re: i'll LOVE it if someone helps....

Well, in 0.5.0 you can look in the "graphics" section of the documentation to draw a shape. An example is: function draw() love.graphics.setColor(255, 255, 255) love.graphics.rectangle(love.draw_fill, x, y, width, height) end You can change love.draw_fill with love.draw_line to draw only t...
by napco
Sun Nov 22, 2009 1:57 am
Forum: General
Topic: Animation Create Question
Replies: 3
Views: 1540

Re: Animation Create Question

Your image is too big. LOVE can't read huge images. I've already tryed it with a BIG tileset and the result were white (?) tiles.
by napco
Fri Nov 20, 2009 4:49 pm
Forum: Support and Development
Topic: where are my files going????
Replies: 12
Views: 6051

Re: where are my files going????

Eh, i think you have to specify a file extension, ex map1.lua, or map1.xyz etc... By the way it's not necessary to set current working directory to save directory, cause LOVE seeks automatically first in the save directory and next in your working directory. Also, a folder inside your save directory...