Search found 2 matches

by James_D.
Wed Jun 22, 2011 4:51 pm
Forum: Libraries and Tools
Topic: Animations And LÖVE (AnAL) - The animations replacement lib
Replies: 71
Views: 57067

Re: Animations And LÖVE (AnAL) - The animations replacement

Or just change

Code: Select all

--- Reset
-- Go back to the first frame.
function animation:reset()
	self:seek(O)
end
to

Code: Select all

--- Reset
-- Go back to the first frame.
function animation:reset()
	self:seek(1)
end
I just fixed the same bug for myself
by James_D.
Wed Jun 22, 2011 10:37 am
Forum: Support and Development
Topic: Including a lib
Replies: 1
Views: 1614

Including a lib

Ok I'm gonna jump out of my window if no one help me to include a bl**dy lib in my main... Why is there no #include ? That would so simple... I saw no tutos, no link, none of love.filesystem.include and love.filesystem.load are working... So what's the point? How do I include a library in my main pl...