Search found 7 matches

by TheEmperorOfLulz
Mon Jan 30, 2012 9:01 am
Forum: Support and Development
Topic: My animation not displaying properly..;(
Replies: 3
Views: 1692

Re: My animation not displaying properly..;(

Ok guys, thankyou:)
tentus wrote:Why not use the more recent version, found here?
I just copied the animation.lua found in example.love, didn't know it was outdated:D
by TheEmperorOfLulz
Sun Jan 29, 2012 8:14 pm
Forum: Support and Development
Topic: My animation not displaying properly..;(
Replies: 3
Views: 1692

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
by TheEmperorOfLulz
Fri Jan 20, 2012 6:42 pm
Forum: Support and Development
Topic: Using GIF files and playing video clips?
Replies: 2
Views: 3100

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...
by TheEmperorOfLulz
Mon Nov 21, 2011 3:44 pm
Forum: General
Topic: Avatars: OBEY!
Replies: 763
Views: 1005128

Re: Avatars: OBEY!

Hope my flashy GIF doesn't hurt anyones eyes:)
by TheEmperorOfLulz
Fri Oct 07, 2011 8:25 am
Forum: Support and Development
Topic: Change dt or use another timeformat?
Replies: 10
Views: 4083

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...
by TheEmperorOfLulz
Fri Oct 07, 2011 5:41 am
Forum: Support and Development
Topic: Change dt or use another timeformat?
Replies: 10
Views: 4083

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. ...
by TheEmperorOfLulz
Wed Oct 05, 2011 9:16 am
Forum: Support and Development
Topic: Change dt or use another timeformat?
Replies: 10
Views: 4083

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