I just copied the animation.lua found in example.love, didn't know it was outdated:Dtentus wrote:Why not use the more recent version, found here?
Search found 7 matches
- Mon Jan 30, 2012 9:01 am
- Forum: Support and Development
- Topic: My animation not displaying properly..;(
- Replies: 3
- Views: 1791
Re: My animation not displaying properly..;(
Ok guys, thankyou:)
- Sun Jan 29, 2012 8:14 pm
- Forum: Support and Development
- Topic: My animation not displaying properly..;(
- Replies: 3
- Views: 1791
My animation not displaying properly..;(
Simple thing, my animation just doesn't want to play like i want it to. The first frame of 4 is all messed up! Mind taking a look and seeing if you can find what's going on? Attached the .love beneath.
Thanks:)
TheEmperorOfLulz
Thanks:)
TheEmperorOfLulz
- Fri Jan 20, 2012 6:42 pm
- Forum: Support and Development
- Topic: Using GIF files and playing video clips?
- Replies: 2
- Views: 3218
Using GIF files and playing video clips?
Hey there lövers, I've recently started on a new project, and i need it to have a lot of animations. I was wondering; is there a way to draw animations in .gif format, or will i have to use the kind of animation shown in example.love? Question 2: If i wanted to play cutscenes, is there a way to play...
- Mon Nov 21, 2011 3:44 pm
- Forum: General
- Topic: Avatars: OBEY!
- Replies: 763
- Views: 1199996
Re: Avatars: OBEY!
Hope my flashy GIF doesn't hurt anyones eyes:)
- Fri Oct 07, 2011 8:25 am
- Forum: Support and Development
- Topic: Change dt or use another timeformat?
- Replies: 10
- Views: 4416
Re: Change dt or use another timeformat?
Still doesn't work:( Heres my code: function love.load() a = 1 end cron = require 'cron' function love.update(dt) cron.update(dt) -- you must do this once inside love.update trollClock = cron.every(1, function() a = a + 1 end) function love.draw() love.graphics.print(a, 200, 200) end end I added the...
- Fri Oct 07, 2011 5:41 am
- Forum: Support and Development
- Topic: Change dt or use another timeformat?
- Replies: 10
- Views: 4416
Re: Change dt or use another timeformat?
cron = require 'cron' function love.update(dt) cron.update(dt) -- you must do this once inside love.update ... trollClock = cron.every(1, function() troll.energy = troll.energy + 1 end) ... cron.cancel(trollClock) -- this stops the clock, for example when the troll dies end That all looks awesome. ...
- Wed Oct 05, 2011 9:16 am
- Forum: Support and Development
- Topic: Change dt or use another timeformat?
- Replies: 10
- Views: 4416
Change dt or use another timeformat?
Hello all LÖVE users,
I recently started with LÖVE and i want to create a program that counts. However, i need it to not count in dt, but for every second instead. Is there a way i can change the duration of dt? Or do i use another timeformat in this case?
Thanks:)
TehEmperorOfLulz
I recently started with LÖVE and i want to create a program that counts. However, i need it to not count in dt, but for every second instead. Is there a way i can change the duration of dt? Or do i use another timeformat in this case?
Thanks:)
TehEmperorOfLulz