Thanks a lot!g0r1ll4 wrote: ↑Sat Aug 19, 2017 9:47 pm A better way is to use a sprite sheet and use a quad to divide it.
Link is a pretty clear tutorial about it:
https://www.youtube.com/watch?v=_NpDbNtJyDQ
Search found 6 matches
- Sun Aug 20, 2017 2:07 am
- Forum: Support and Development
- Topic: How can I make short animations in LOVE?
- Replies: 2
- Views: 3700
Re: How can I make short animations in LOVE?
- Sat Aug 19, 2017 7:44 pm
- Forum: Support and Development
- Topic: How can I make short animations in LOVE?
- Replies: 2
- Views: 3700
How can I make short animations in LOVE?
I'm a newbie to LOVE and I have no game programming experience. I just started learning LOVE many days ago. I'm wondering how to make short animations. I mean, like breaking a barrel, a bomb exploding etc. However, I don't have any actual LOVE examples to refer to. And this is my idea: 1. load each ...
- Mon Aug 07, 2017 3:58 am
- Forum: General
- Topic: Question from a newbie
- Replies: 6
- Views: 6080
Re: Question from a newbie
Hello! :) ZeroBrane Studio can debug LOVE projects and has auto-completion for the LOVE API, and documentation if you hover the cursor over a LOVE function. You can put this line at the top of main.lua so that debugging works: if arg[#arg] == "-debug" then require("mobdebug").st...
- Mon Aug 07, 2017 3:57 am
- Forum: General
- Topic: Question from a newbie
- Replies: 6
- Views: 6080
Re: Question from a newbie
it works, thanksSir_Silver wrote: ↑Sun Aug 06, 2017 12:22 pm I believe your chicken is a black rectangle because you called love.graphics.setColor(0, 0, 0, 255) (setting the rendering color to black).
Just get rid of that line and it should look fine.
- Sun Aug 06, 2017 10:56 am
- Forum: General
- Topic: Question from a newbie
- Replies: 6
- Views: 6080
Re: Question from a newbie
Your problem is unrelated to chicken.jpg. Look closely at how you spelled "imange" :) thanks a lot, got it. :o: Is there an IDE or some useful tools to develop LOVE projects? I found that it is not easy to debug and check the syntax. And after I loaded it, the image was a black rectangle....
- Sun Aug 06, 2017 6:11 am
- Forum: General
- Topic: Question from a newbie
- Replies: 6
- Views: 6080
Question from a newbie
Hey, I'm a newbie of LOVE. I just started learning it last night. I created a directory Chicken which includes two files ( main.lua, conf.lua ) and an image Chicken.jpg . However, after I copied some codes from the tutorial and typed a command line in cmd.exe to run the game, an error showed up: Err...