Search found 8 matches

by Regret
Fri Oct 08, 2010 12:04 pm
Forum: Libraries and Tools
Topic: [RIP] LÖVElike - A Roguelike Engine ("Bärrelike" flavour)
Replies: 36
Views: 23180

Re: LÖVElike - A Roguelike Engine (v0.05 aka "Barrelike")

I really don't know if making an entire other Lua roguelike engine is worth the time when the super awesome T-Engine exists. What do you plan on your engine having that it won't? Well, don't get me wrong but I don't trully get your point. First this is LÖVE and not anymore universal pure LUA. Can y...
by Regret
Wed Aug 11, 2010 8:16 pm
Forum: Support and Development
Topic: Those physics
Replies: 22
Views: 11910

Re: Those physics

Mizore wrote:Collisions work perfectly without rotation, if rotation is enabled... it f*s up.
Again as I said the problem is in drawing. Collisions work fine, you are drawing your world wrong.
by Regret
Wed Aug 11, 2010 6:43 pm
Forum: Support and Development
Topic: Those physics
Replies: 22
Views: 11910

Re: Those physics

The problem is with assuming that :getX() returns a value that you can directly use to draw rectangles. :getX() returns the exact middle of a physics object, so to properly draw a rectangle you need to substract it's width / height to get the top left corner. Furthermore, to properly draw a rotating...
by Regret
Fri Jul 16, 2010 11:17 am
Forum: General
Topic: I Made a Game and Could Win Valuable Prizes!
Replies: 10
Views: 6181

Re: I Made a Game and Could Win Valuable Prizes!

vrld wrote:
Regret wrote:Awesome graphics, how did you make it so your images don't come out all blurry after scaling? Whenever I try to draw an 8x8px image with 4x scale it becomes all blurry in love ;-;
set the image filter to nearest: http://love2d.org/wiki/(Image):setFilter
Thanks!
by Regret
Fri Jul 16, 2010 1:08 am
Forum: General
Topic: I Made a Game and Could Win Valuable Prizes!
Replies: 10
Views: 6181

Re: I Made a Game and Could Win Valuable Prizes!

Awesome graphics, how did you make it so your images don't come out all blurry after scaling? Whenever I try to draw an 8x8px image with 4x scale it becomes all blurry in love ;-;
by Regret
Tue Jul 13, 2010 7:11 pm
Forum: Support and Development
Topic: Generating fixed width font
Replies: 3
Views: 3796

Re: Generating fixed width font

1. PNG > TGA. (Looks over the internet for facts) It's smaller, also lossless, also has alpha channel, and allows more color depth (TGA's max is 8bpc, PNG is 16). More importantly, it is usually better supported on graphic libraries. Love does not support saving into .png format using love.image.ne...
by Regret
Tue Jul 13, 2010 4:18 pm
Forum: Support and Development
Topic: Generating fixed width font
Replies: 3
Views: 3796

Generating fixed width font

I wrote this in an attempt to generate a fixed width font from the default love font. It prints given letters one by one on a black background, screenshoting / cutting out each one and then assembling it into a new imageFont. I have encountered the following problems: a) Saving the font in .tga form...
by Regret
Fri Jan 22, 2010 7:42 pm
Forum: General
Topic: Hosting
Replies: 14
Views: 7182

Re: Hosting