Search found 53 matches

by Matkins
Thu Jul 30, 2009 9:20 pm
Forum: Support and Development
Topic: Smallest Point Size?
Replies: 7
Views: 5599

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.
by Matkins
Thu Jul 30, 2009 9:13 pm
Forum: General
Topic: Particle System example?
Replies: 5
Views: 4333

Re: Particle System example?

Ah. I'm guessing it's not included in the mac distro
by Matkins
Thu Jul 30, 2009 7:05 pm
Forum: General
Topic: Particle System example?
Replies: 5
Views: 4333

Re: Particle System example?

Yes. Thanks. Where was it?
by Matkins
Thu Jul 30, 2009 5:41 pm
Forum: General
Topic: Particle System example?
Replies: 5
Views: 4333

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?
by Matkins
Tue Jul 28, 2009 10:59 pm
Forum: Support and Development
Topic: Gravity well in Love?
Replies: 6
Views: 5061

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...
by Matkins
Tue Jul 28, 2009 7:06 pm
Forum: Support and Development
Topic: Smallest Point Size?
Replies: 7
Views: 5599

Re: Smallest Point Size?

Just realized that 1 pixel png and love.color_modulate, I can do exactly what i want. :)
by Matkins
Tue Jul 28, 2009 6:30 pm
Forum: Support and Development
Topic: Smallest Point Size?
Replies: 7
Views: 5599

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)...
by Matkins
Tue Jul 28, 2009 6:10 pm
Forum: Support and Development
Topic: Smallest Point Size?
Replies: 7
Views: 5599

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?
by Matkins
Mon Jul 27, 2009 1:33 pm
Forum: General
Topic: Problem with inserting table into table
Replies: 15
Views: 8874

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=...
by Matkins
Thu Jul 16, 2009 6:59 pm
Forum: General
Topic: Problem with inserting table into table
Replies: 15
Views: 8874

Re: Problem with inserting table into table

Thanks for the suggestion, I may try something like that.