Search found 13 matches

by Öbey
Sat Sep 01, 2012 12:19 pm
Forum: Support and Development
Topic: Unresponsive console on windows
Replies: 11
Views: 9572

Re: Unresponsive console on windows

I believe so-called expected behaviour is a erratic behavior.
console_and_error.love works but it shouln't have been that tricky to view the console
by Öbey
Sat Sep 01, 2012 9:06 am
Forum: Support and Development
Topic: Unresponsive console on windows
Replies: 11
Views: 9572

Re: Unresponsive console on windows

as I said this is what is not working
neither of those open the console if there was an error
I expected --console to open the console in the first place but no, it also fails if there is an error
by Öbey
Sat Sep 01, 2012 1:18 am
Forum: Games and Creations
Topic: Audio Tree: abandonment issues
Replies: 30
Views: 18807

Re: Audio Tree: pre-alpha

everything needs canvas
by Öbey
Sat Sep 01, 2012 1:09 am
Forum: Support and Development
Topic: Unresponsive console on windows
Replies: 11
Views: 9572

Re: Unresponsive console on windows

yes your build works
EDIT:
console opens in 0.8.0 if there is no error
but if there is an error it does not
by Öbey
Fri Aug 31, 2012 11:05 pm
Forum: Support and Development
Topic: Unresponsive console on windows
Replies: 11
Views: 9572

Re: Unresponsive console on windows

I have xp sp3 I tried the following with 0.8.0 and the latest development build. 1) I run a folder X by dropping it on the love.exe I have conf.lua with console set to true I know it is read because I can change the title within the conf.lua no console 2) I run the command "love.exe --console X...
by Öbey
Fri Aug 31, 2012 7:39 pm
Forum: Support and Development
Topic: Unresponsive console on windows
Replies: 11
Views: 9572

Re: Unresponsive console on windows

--console conf.lua love._openConsole()
none of those works with the latest development build and 0.8.0

Also running within the command prompt is not an option because it returns back to command prompt immediately

Thus Console is not only broken on windows but there is also no workaround
by Öbey
Tue Aug 14, 2012 1:32 pm
Forum: Libraries and Tools
Topic: Physics Editor - What do you think about?
Replies: 4
Views: 4205

Re: Physics Editor - What do you think about?

It is a video.
by Öbey
Mon Aug 13, 2012 10:20 am
Forum: General
Topic: Offline LÖVE documentation for download
Replies: 106
Views: 615107

Re: Offline LÖVE documentation for download

<html> <head> <meta http-equiv="Refresh" content="0; url=jar:docs.zip!/wiki/index.html" /> </head> <body> <a href="jar:docs.zip!/wiki/index.html">Löve Wiki</a> </body> </html> Save this as docs.html Put it in the same folder with docs.zip Open docs.html with Firefox. Y...
by Öbey
Mon Aug 13, 2012 10:03 am
Forum: Support and Development
Topic: rectangle drawing
Replies: 4
Views: 4207

rectangle drawing

I draw an image with (x, y, w, h)=(0, 0, 100, 100) But in order to draw a border around it(from its upper left corner to lower right corner) I need to draw a rectangle with (x+0.5, y+0.5, w-1, h-1) = (0.5, 0.5, 99, 99) I understand pixel grid for lines are the center of the pixels, it is mentioned i...
by Öbey
Sun Aug 12, 2012 9:17 pm
Forum: Support and Development
Topic: how to tile sprites?
Replies: 1
Views: 1721

how to tile sprites?

I know how to tile images but how to tile portions of images without drawing many quads.
ps: I can't use canvas it is not an option. I don't want to separate the image into smaller images.