Search found 303 matches

by osgeld
Mon Aug 31, 2009 3:42 am
Forum: Games and Creations
Topic: LD-15 entry
Replies: 2
Views: 2802

LD-15 entry

This was a (IMO) failed project banged out in frustration and confusion, but managed to make it "game like" in time for LD15 so it was not a total loss, + I learned alot Cavern Crawler (Final) Posted by Osgeld Sunday, August 30th, 2009 7:58 pm Well after many, many set backs I managed to c...
by osgeld
Sun Aug 30, 2009 7:36 pm
Forum: Support and Development
Topic: Find a point on a line
Replies: 4
Views: 2350

Re: Find a point on a line

In fact this with some flooring is working

not "perfect" but its working .... I have been fighting with this since yesterday afternoon

thanks!!
by osgeld
Sun Aug 30, 2009 7:00 pm
Forum: Support and Development
Topic: Find a point on a line
Replies: 4
Views: 2350

Re: Find a point on a line

thanks, Ill give it a shot
by osgeld
Sun Aug 30, 2009 5:52 pm
Forum: Support and Development
Topic: Find a point on a line
Replies: 4
Views: 2350

Find a point on a line

Ok I am stumped, Im drawing a polygon and would like to find out if a pos (the player position) is touching that line or not

any help?
by osgeld
Fri Aug 28, 2009 6:57 pm
Forum: General
Topic: Ludum Dare 48, 15th edition
Replies: 7
Views: 3396

Re: Ludum Dare 48, 15th edition

Jasoco wrote:48 hours. Too little
That is the whole point

and If you complete something somewhat fun and polished in that timeframe it really is a big motivational boost
by osgeld
Fri Aug 28, 2009 1:24 pm
Forum: General
Topic: Ludum Dare 48, 15th edition
Replies: 7
Views: 3396

Re: Ludum Dare 48, 15th edition

Im there with love
by osgeld
Thu Aug 27, 2009 7:16 pm
Forum: Support and Development
Topic: Draw Text Rotated?
Replies: 17
Views: 9874

Re: Draw Text Rotated?

heh your avatar has the same expression
by osgeld
Wed Aug 26, 2009 10:51 pm
Forum: Support and Development
Topic: color mask with alpha
Replies: 3
Views: 4517

Re: color mask with alpha

love.graphics.setColorMode(love.color_modulate)

after this is called you should be able to define a color and use it on your image
by osgeld
Tue Aug 25, 2009 4:24 am
Forum: Support and Development
Topic: Misc Questions
Replies: 11
Views: 4954

Re: Misc Questions

Heya all! hello! -resizable window (I can't seem to drag resize any windows for my löve games, and I'd like the user to be able to change it's dimensions in real time) -change icon for games made in löve and/or .love files (both the icon next to the file in a file browser and the icon displayed in ...
by osgeld
Thu Aug 20, 2009 2:46 am
Forum: Support and Development
Topic: love.graphics.present() + dirty rects?
Replies: 9
Views: 4998

Re: love.graphics.present() + dirty rects?

http://www.gamedev.net/dict/term.asp?TermID=501
A method of updating only the changed parts of the screen. The screen is divided up into rectangles and only rectangles that have changes are makred "dirty" and then are redrawn to clean them up. Increases drawing speed as less is drawn.