thanks a lot! still useful in 2022 : D finally understand how the coin spawning works after a few tries xD
@joedew41833 жыл бұрын
in new versions of love the rgb is from a a scale of 0-1. to use 0-255 just use that and put /255 after every value: (255/255, 100/255, 100,255)
@jekburri4 жыл бұрын
Best Love tutorial out there, I'd love to see more!
@scampernoodle67574 жыл бұрын
k den
@niilokolehmainen Жыл бұрын
A great video! Definetly learned a lot!
@illustration34063 жыл бұрын
You could have made the movement part of the script 4 separated if statements to give the player more freedom while moving, but its still a great video!
@sagargada735 жыл бұрын
Great work🙌
@viczvapo Жыл бұрын
1:09:30 lol “it’s not hard to implement a title screen” watched the whole video for that lmao. Great video, nonetheless. Gracias.
@shaikasmazabi13594 жыл бұрын
Can someone tell where can I find the source code My Game is running perfectly except that instead of The player image I am getting a very huge magnified image whcih absolutely covering my game screen and I am not able to find out where exactly is my player But the coins with the will rectangle box as player Till here I am getting it perfectly Pls Send me the Source Code
@XTheOneCat4 жыл бұрын
First of all I wanted to check my options with this game engine, I was reading the code and making some modifications, tryied to port the game to see if one day i will be able to make my own game, I ran over the official forum, added optimizations and so, but I still have android fps = 8, on pc runs almost fine for the rig that I have. What i need to do, the phone is not that old for such small game. Thank you for your video, It was very instructive.
@charmilla50984 жыл бұрын
uhm that shoudnt happen maybe you messed something up or you are missing something, i recommend you go to love2d.org and join the discord server and ask for help. believe me you will get immediatle respone the discord server is highly active.
@BuildersSite Жыл бұрын
More of this please!
@toosharpstudios669410 ай бұрын
can we still follow the demo with the latest version of love2D?
@apeman.3 жыл бұрын
Good one for a refresher course
@NeedAllah-h4j Жыл бұрын
How can I installed love 2d
@machiii73945 жыл бұрын
VS Code. Love to ya brother.
@darkfrei23 жыл бұрын
Thanks a lot! I've already made some games / simulations with Löve! :)
@neithancrack76493 жыл бұрын
Hey I'm confused can u help me out?
@darkfrei23 жыл бұрын
@@neithancrack7649 I don't know, first you are need to explain your problem :)
@neithancrack76493 жыл бұрын
@@darkfrei2 can I publish my games on playstore using a smartphone
@neithancrack76493 жыл бұрын
@@darkfrei2 and is the function love.update(dt) is it umm a function to move things but when I used it it doesn't move anything in my small circle
@neithancrack76493 жыл бұрын
And how do I make a 2D pixel art game on Löve for Android from a Android phone and thx if u solved 3 of my problems I'm new to making theeezee
@jonrx7765 Жыл бұрын
how do his VS can work?????
@MegaYkarus6 жыл бұрын
I can't find the Resources in the address above. Where can I find it, please?
@guyfamyt4 жыл бұрын
How do u get it to run
@SliverOfStraw012 жыл бұрын
how to do the same thing but with a circel
@saynabyusuf13054 жыл бұрын
hiya im new to coding and im kind of confused at what you did to run it at 9:28 becuase mine as just come up with a bunchh of errors and i cant get it to run anything .
@ulybaka13373 жыл бұрын
He opened löve using console
@Nazar-ni1kw Жыл бұрын
coding is actually fun when you know it
@neithancrack76493 жыл бұрын
How to change the picture of löve for Android?,
@sagargada735 жыл бұрын
Can someone explain the loop where he started from end and came till 1 for the coin, thanks! 49:40
@TheOddOne25 жыл бұрын
Don't know if you ask why he do it or how it works. So I will answer both quickly, and you can ask again if you want a better explanation. The reason for counting down instead of up is because he deletes items from his table and when the for loop reaches it last step it will go out of bounds for that table and it crashes. Counting down with a for loop is simply obtained by starting at the high number and ending at the low while subtracting instead of adding to the iterator. i=#coins (lets say 5) and end at 1. First loop i = 5 and next loop i = 4 etc. This way it doesn't matter if an item is deleted, because the table will always have at least 1 less item than the previous iteration.
@sujit58724 жыл бұрын
@@TheOddOne2 I keep getting errors about around the coin needing to index global coins? can you help me in this
@lasvegasundergroundbeats88834 жыл бұрын
for some reason the background color circle and box are all the same with the color codes provided when i try and get to the 7th line of code any advice?
@mmmjuicyfruits4 жыл бұрын
they changed the rbg to a scale to 0-1 so when you're making a color you do love.graphics.setColor(1, 0.6, 06)
@theochasid89965 жыл бұрын
Good tutorial I like it
@Hamzaelbouti3 жыл бұрын
greate tutorial in 2021, but resources not found , please re-upload them if possible
@romanruano13694 жыл бұрын
My box doesnt change color
@DrJonesJazzMore4 жыл бұрын
instead of using 0 to 255 values use 0 to 1 values, for example 0.5
@romanruano13694 жыл бұрын
It worked when gave a single a value and changed the rest to 0 for example (200, 0, 0) im guessing its somthing to do with the depth of color or how two different colors mix.
@thewilsonchannel91484 жыл бұрын
good video
@madbanana2210 ай бұрын
now I can say "made with Love"
@lawofrobotics4 жыл бұрын
I keep getting errors about around the coin needing to index global coins?
@sujit58724 жыл бұрын
did you solve it? if so please tell me
@turtle85583 жыл бұрын
nice
@DraconianRain5 жыл бұрын
I've been trying to use Love2D for years and this is always the first tutorial and the rectangle always remains white despite having identical code and setup. It's disappointing because Love2D seems like a great engine.
@noass5 жыл бұрын
in the love version he is using, it uses 0 to 255, but later versions use 0 to 1...
@DraconianRain5 жыл бұрын
@@noass I was still having this issue in their version and 4 other versions I tried. Today I got the most current and it finally works.
@pardolagames89945 жыл бұрын
@@DraconianRain And I got stuck into this just for today. XD
@victornoagbodji4 жыл бұрын
watching to get up to speed with this engine and reading these comments... 🤔 shouldn't your IDEs or editors tell you what the parameters you are passing in mean? that's like editors/IDEs must have. is lua/love support for vscode or other editors not good? 🤔
@johnbaxter75824 жыл бұрын
@@victornoagbodji Visual studio code has a great LOVE plugin called "LOVE" and published bschulte
@calapranzee2 жыл бұрын
Try to say “get ready for the next battle”
@nolimitlekan4 жыл бұрын
This is the best love tutorial i have seen so far all in one place.please i use android for my love2d coding please i need the android own like the direction and stuffs like that .please
@JoeyMerryfield5 жыл бұрын
why does it sound like maxmoefoe?
@holthuizenoemoet591Ай бұрын
windows XP? still relevant though
@oakmars80625 жыл бұрын
does anyone know how to use a isometric view instead of the top down view ?
@user-ob5hj5vn8c4 жыл бұрын
oak Mars you will have to create sprites that are drawn isometrically. If you want to take the hard route and do 3d, that is possible also, however love2d does not support 3d at all, and you will have to learn all the math from scratch.
@romanruano13694 жыл бұрын
The box goes super fast across the screen on my computer I have the same code
@samanthaperry45434 жыл бұрын
where the animation is, multiply by dt in the love.update(dt) function
@saian54793 жыл бұрын
𒐪𒐪𒐪𒐪𒐪𒐪𒐪𒐪𒐪__𒐪𒐪𒐪𒐪𒐪𒐪𒐪𒐪𒐪𒐪𒐪𒐪
@r501424 жыл бұрын
Is anyone sick of that sound yet?
@mohammadradiver26442 жыл бұрын
Bro are you in funeral?
@jasonmorgan6614 жыл бұрын
Omg construct 3 is way better and way easier 😬
@jasonmorgan6614 жыл бұрын
@พาราดิน6364 its free up to 25 events. For a 100 a year its worth it to be licensed
@jasonmorgan6614 жыл бұрын
@JustStoff bro I have stopped developing. It gets you fat way to fast and if your in it for money well good luck. It's a scam industry. There are so many game engines I wanna make one myself and sell that lol. Like in the gold Miner days , some struck it rich by selling tools to find gold lol.
@gachastorys51292 жыл бұрын
@@ultimateinternetman4335 unfunny
@ultimateinternetman43352 жыл бұрын
@@gachastorys5129 i made the comment one year ago, please disregard its shittiness i couldn't figure out how to use this game engine and i was pissed, i use gamemaker now
@gachastorys51292 жыл бұрын
@@ultimateinternetman4335 I actually only said that as a joke. But anyways glad to see you still making games after a year! It’s ok if you need to switch to another engine it’s all about what you prefer