Search found 53 matches
- Thu Jul 30, 2009 9:20 pm
- Forum: Support and Development
- Topic: Smallest Point Size?
- Replies: 7
- Views: 6158
Re: Smallest Point Size?
love.point_rough doesn't do it. Doesn't seem to be anything to do with anti-aliasing. But the .png method works fine, I honestly don't mind if you bother to fix this or not.
- Thu Jul 30, 2009 9:13 pm
- Forum: General
- Topic: Particle System example?
- Replies: 5
- Views: 4843
Re: Particle System example?
Ah. I'm guessing it's not included in the mac distro
- Thu Jul 30, 2009 7:05 pm
- Forum: General
- Topic: Particle System example?
- Replies: 5
- Views: 4843
Re: Particle System example?
Yes. Thanks. Where was it?
- Thu Jul 30, 2009 5:41 pm
- Forum: General
- Topic: Particle System example?
- Replies: 5
- Views: 4843
Particle System example?
I remember seeing a particle system example not too long ago. But now I want to find it and I have no idea where it is. Does anyone know?
- Tue Jul 28, 2009 10:59 pm
- Forum: Support and Development
- Topic: Gravity well in Love?
- Replies: 6
- Views: 5655
Re: Gravity well in Love?
Strangely enough this is exactly what I've been working on. Do not use the love.physics functions for this. Initialize your own tables for bodies and your gravity well data: width = love.graphics.getWidth() height = love.graphics.getHeight() body = {} for i=1, 50 do body[i] = { mass = 3, x = math.ra...
- Tue Jul 28, 2009 7:06 pm
- Forum: Support and Development
- Topic: Smallest Point Size?
- Replies: 7
- Views: 6158
Re: Smallest Point Size?
Just realized that 1 pixel png and love.color_modulate, I can do exactly what i want. 

- Tue Jul 28, 2009 6:30 pm
- Forum: Support and Development
- Topic: Smallest Point Size?
- Replies: 7
- Views: 6158
Re: Smallest Point Size?
Unfortunately the image idea wont be convenient for what i'm trying to do, I want them to randomly change color (i'm trying to make twinkling stars)...
- Tue Jul 28, 2009 6:10 pm
- Forum: Support and Development
- Topic: Smallest Point Size?
- Replies: 7
- Views: 6158
Smallest Point Size?
Hey. I don't seem to be able to draw points that are just a single pixel. I've tried setting it as small as 0.1, but still my points seem to be a square block of 4 pixels. Any ideas?
- Mon Jul 27, 2009 1:33 pm
- Forum: General
- Topic: Problem with inserting table into table
- Replies: 15
- Views: 9983
Re: Problem with inserting table into table
I'm not sure if this caused the problem... but I sense something's up here. function vect(m1x, m1y, m2x, m2y) local dx = m2x - m1x local dy = m2y - m1y local d = math.sqrt(dx^2 + dy^2) local vx = dx/d local vy = dy/d return d, vx, vy end if x, y == x1, y1, then dx and dy would be zero... If dx==dy=...
- Thu Jul 16, 2009 6:59 pm
- Forum: General
- Topic: Problem with inserting table into table
- Replies: 15
- Views: 9983
Re: Problem with inserting table into table
Thanks for the suggestion, I may try something like that.