Search found 27 matches

by Jake
Thu Aug 21, 2008 11:47 pm
Forum: General
Topic: How Did You Find (true) LÖVE?
Replies: 55
Views: 58465

Re: How Did You Find (true) LÖVE?

This page right here. Four weeks ago :)
by Jake
Thu Aug 14, 2008 11:43 pm
Forum: General
Topic: Animation Library
Replies: 5
Views: 3388

Re: Animation Library

I quite like it, I made a video showing what the example does. Please state the license. If you don't know, please select the zlib/libpng license, which is also used by LÖVE. Cool thanks. Shame about the overlapping text though. Yeah, zlib/libpng sounds fine. I've fixed a bug that caused callbacks ...
by Jake
Thu Aug 14, 2008 1:40 pm
Forum: General
Topic: Animation Library
Replies: 5
Views: 3388

Animation Library

Want nice looking UI elements with fancy animations? Use this animation library. What this does is 'tween' a starting number to a destination number in a smooth transition. This can be used for scrolling text, sliding/fading images onto the screen, button rollover effects etc. Don't know what the he...
by Jake
Mon Aug 11, 2008 10:56 am
Forum: Support and Development
Topic: Moving from Brain Damage to love
Replies: 8
Views: 5128

Re: Moving from Brain Damage to love

1 - I see that my print messages go to stdout - but is there no way I could view them on-the-fly? I feel like maybe I'm missing something obvious here. I use trace messages all the time when starting work on a new routine, and I'm not sure I could function efficiently without them. It's entirely po...
by Jake
Mon Aug 11, 2008 10:45 am
Forum: Support and Development
Topic: draw rectangle parameters
Replies: 3
Views: 3092

Re: draw rectangle parameters

This tripped me up aswell but you can check the demos to see how it's done.

The argument should actually be love.draw_line or love.draw_fill says the Constants page.
by Jake
Mon Jul 21, 2008 3:54 pm
Forum: Support and Development
Topic: Can I set a colour key for an image?
Replies: 2
Views: 4597

Re: Can I set a colour key for an image?

Ah okay, it was just for convenience really. Transparent PNGs work fine.
by Jake
Mon Jul 21, 2008 1:52 pm
Forum: Support and Development
Topic: Can I set a colour key for an image?
Replies: 2
Views: 4597

Can I set a colour key for an image?

Can I create an image from something.gif and then make anything that is pink (255,0,255) transparent? Pixel images are easy to edit in MSPaint :D

Does Love support this (Nothing in the docs)? I know there is a SDL_SetColorKey function.