Search found 10 matches
- Thu Jun 06, 2013 8:39 pm
- Forum: Support and Development
- Topic: Entities tutorial?
- Replies: 15
- Views: 7678
Re: Entities tutorial?
Most welcome.
- Thu Jun 06, 2013 7:24 pm
- Forum: Support and Development
- Topic: Rotated images are Fuzzy
- Replies: 10
- Views: 5107
Re: Rotated images are Fuzzy
It isn't a bug, it's rather a limitation in the filters. If you rotate any image in a graphics program, it will look fuzzy (unless that graphics program has a super-awesome filter we don't know about >_>*.) Same is true for scaling images. To fix this, either use a higher resolution image and scale...
- Thu Jun 06, 2013 7:08 pm
- Forum: Support and Development
- Topic: Entities tutorial?
- Replies: 15
- Views: 7678
Re: Entities tutorial?
I don't know if this exactly what you wanted, but here you go: You can make a 'class' sort of thing. I'm not very good at explaining so here's a basic example of a rectangle 'class' builder: rectangle.lua: rectangle = {} --creates a table called rectangle to store all of your variables rectangle.__...
- Wed Jun 05, 2013 8:49 pm
- Forum: Support and Development
- Topic: Rotated images are Fuzzy
- Replies: 10
- Views: 5107
Re: Rotated images are Fuzzy
It must be something to do with the image itself that causes the distortion. That's why I specifically asked for the image. The whole graphics pipeline has a lot of details and can have certain effects on special data. Some of them may be outside of your expectations and look "wrong". Got...
- Wed Jun 05, 2013 8:38 pm
- Forum: Support and Development
- Topic: Rotated images are Fuzzy
- Replies: 10
- Views: 5107
Re: Rotated images are Fuzzy
Ok. This is interesting. I tried a different image and it looks correct. It must be something to do with the image itself that causes the distortion.
This post can be ignored for now
This post can be ignored for now
- Wed Jun 05, 2013 8:19 pm
- Forum: Support and Development
- Topic: Entities tutorial?
- Replies: 15
- Views: 7678
Re: Entities tutorial?
I just started building a framework, literally today. Right now it doesn't have much going on but I plan to complete it.
If you have some questions or need some pointers I am sure I can point you in the right direction. The discussion could be rather long for a forum post.
Send me a PM if you like.
If you have some questions or need some pointers I am sure I can point you in the right direction. The discussion could be rather long for a forum post.
Send me a PM if you like.
- Wed Jun 05, 2013 8:14 pm
- Forum: Support and Development
- Topic: Rotated images are Fuzzy
- Replies: 10
- Views: 5107
Re: Rotated images are Fuzzy
The code is in my original post. It's two lines of code. If you use that code and load an image it won't look clean when it is rotated. This should be very easy to reproduce. My exact code is a little convoluted as I have positions stored on an object. None of this is relevant however as the issue i...
- Wed Jun 05, 2013 6:57 pm
- Forum: Support and Development
- Topic: Rotated images are Fuzzy
- Replies: 10
- Views: 5107
Re: Rotated images are Fuzzy
I tried the setFilter method. setFilter("nearest","nearest") took the outside fuzz away but it distorted the colors inside the image.
It almost looks as if the rotated image on a non N,S,W,E direction is being anti-aliased.
It almost looks as if the rotated image on a non N,S,W,E direction is being anti-aliased.
- Wed Jun 05, 2013 6:45 pm
- Forum: Support and Development
- Topic: Rotated images are Fuzzy
- Replies: 10
- Views: 5107
Re: Rotated images are Fuzzy
I will give that a try and see if it helps. I'll post my findings.
Thanks!
Thanks!
- Wed Jun 05, 2013 6:14 pm
- Forum: Support and Development
- Topic: Rotated images are Fuzzy
- Replies: 10
- Views: 5107
Rotated images are Fuzzy
Hi All, I just stumbled across this little engine the other day and I have started playing around with it. I apologize in advance if this has been asked, I did search the topics and couldn't find anything relative. Using love.graphics.draw(ImageObject,x,y, math.rad(45)) produces are very fuzzy image...