Search found 446 matches

by yetneverdone
Wed Oct 05, 2016 2:16 pm
Forum: Support and Development
Topic: Image not Displaying Right
Replies: 17
Views: 8350

Re: Image not Displaying Right

Off the top of my head, löve doesn't support gif files... out of the box, i mean; there's at least one gif loader library that handles them. It's not a .gif file I'm sorry, i just assumed it was, given what you said in the first post: Hi, im trying to draw this image: [title screen.gif] Also, the o...
by yetneverdone
Wed Oct 05, 2016 1:47 pm
Forum: Support and Development
Topic: Image not Displaying Right
Replies: 17
Views: 8350

Re: Image not Displaying Right

Oh, another thing is, even i tried to display it the normal way, like
function love.load()
image = love.graphics.newImage("assets/image.png")
end

function love.draw()
love.graphics.setColor(255,255,255,255)
love.graphics.draw(image,0,0)
end
Displays the same
by yetneverdone
Wed Oct 05, 2016 1:41 pm
Forum: Support and Development
Topic: Image not Displaying Right
Replies: 17
Views: 8350

Re: Image not Displaying Right

If you don't provide the code snippet you have now, it will be difficult to help :) Okay, here is the code for the whole class I made: I used the classic OOP library local Anim = Object:extend() function Anim:new(path,name,fw,fh,iw,ih) self.path = path self.name = name self.fw = fw self.fh = fh sel...
by yetneverdone
Wed Oct 05, 2016 1:39 pm
Forum: Support and Development
Topic: Image not Displaying Right
Replies: 17
Views: 8350

Re: Image not Displaying Right

zorg wrote:Off the top of my head, löve doesn't support gif files... out of the box, i mean; there's at least one gif loader library that handles them.
It's not a .gif file
by yetneverdone
Wed Oct 05, 2016 8:33 am
Forum: Support and Development
Topic: Image not Displaying Right
Replies: 17
Views: 8350

Image not Displaying Right

Hi, im trying to draw this image: title screen.gif But when I draw it using the love.graphics.draw function, it shows this: Screenshot_2016-10-05_16-20-12.png I tried applying (255,255,255,255) as the love.graphics.setColor() before drawing the image, but still that happens Note: the text at the sec...
by yetneverdone
Sat Sep 24, 2016 11:23 am
Forum: Libraries and Tools
Topic: Alexar's Physics Editor(APE)
Replies: 59
Views: 63588

Re: [lib] Box2D Helper

Cool! Cant wait for the release!