Make games quickly with LÖVE

  Рет қаралды 45,334

Hackers at Cambridge

Hackers at Cambridge

Күн бұрын

Пікірлер: 70
@aljosanpedro4189
@aljosanpedro4189 2 жыл бұрын
thanks a lot! still useful in 2022 : D finally understand how the coin spawning works after a few tries xD
@joedew4183
@joedew4183 3 жыл бұрын
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)
@jekburri
@jekburri 4 жыл бұрын
Best Love tutorial out there, I'd love to see more!
@scampernoodle6757
@scampernoodle6757 4 жыл бұрын
k den
@niilokolehmainen
@niilokolehmainen Жыл бұрын
A great video! Definetly learned a lot!
@illustration3406
@illustration3406 3 жыл бұрын
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!
@sagargada73
@sagargada73 5 жыл бұрын
Great work🙌
@viczvapo
@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.
@shaikasmazabi1359
@shaikasmazabi1359 4 жыл бұрын
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
@XTheOneCat
@XTheOneCat 4 жыл бұрын
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.
@charmilla5098
@charmilla5098 4 жыл бұрын
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
@BuildersSite Жыл бұрын
More of this please!
@toosharpstudios6694
@toosharpstudios6694 10 ай бұрын
can we still follow the demo with the latest version of love2D?
@apeman.
@apeman. 3 жыл бұрын
Good one for a refresher course
@NeedAllah-h4j
@NeedAllah-h4j Жыл бұрын
How can I installed love 2d
@machiii7394
@machiii7394 5 жыл бұрын
VS Code. Love to ya brother.
@darkfrei2
@darkfrei2 3 жыл бұрын
Thanks a lot! I've already made some games / simulations with Löve! :)
@neithancrack7649
@neithancrack7649 3 жыл бұрын
Hey I'm confused can u help me out?
@darkfrei2
@darkfrei2 3 жыл бұрын
@@neithancrack7649 I don't know, first you are need to explain your problem :)
@neithancrack7649
@neithancrack7649 3 жыл бұрын
@@darkfrei2 can I publish my games on playstore using a smartphone
@neithancrack7649
@neithancrack7649 3 жыл бұрын
@@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
@neithancrack7649
@neithancrack7649 3 жыл бұрын
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
@jonrx7765 Жыл бұрын
how do his VS can work?????
@MegaYkarus
@MegaYkarus 6 жыл бұрын
I can't find the Resources in the address above. Where can I find it, please?
@guyfamyt
@guyfamyt 4 жыл бұрын
How do u get it to run
@SliverOfStraw01
@SliverOfStraw01 2 жыл бұрын
how to do the same thing but with a circel
@saynabyusuf1305
@saynabyusuf1305 4 жыл бұрын
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 .
@ulybaka1337
@ulybaka1337 3 жыл бұрын
He opened löve using console
@Nazar-ni1kw
@Nazar-ni1kw Жыл бұрын
coding is actually fun when you know it
@neithancrack7649
@neithancrack7649 3 жыл бұрын
How to change the picture of löve for Android?,
@sagargada73
@sagargada73 5 жыл бұрын
Can someone explain the loop where he started from end and came till 1 for the coin, thanks! 49:40
@TheOddOne2
@TheOddOne2 5 жыл бұрын
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.
@sujit5872
@sujit5872 4 жыл бұрын
@@TheOddOne2 I keep getting errors about around the coin needing to index global coins? can you help me in this
@lasvegasundergroundbeats8883
@lasvegasundergroundbeats8883 4 жыл бұрын
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?
@mmmjuicyfruits
@mmmjuicyfruits 4 жыл бұрын
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)
@theochasid8996
@theochasid8996 5 жыл бұрын
Good tutorial I like it
@Hamzaelbouti
@Hamzaelbouti 3 жыл бұрын
greate tutorial in 2021, but resources not found , please re-upload them if possible
@romanruano1369
@romanruano1369 4 жыл бұрын
My box doesnt change color
@DrJonesJazzMore
@DrJonesJazzMore 4 жыл бұрын
instead of using 0 to 255 values use 0 to 1 values, for example 0.5
@romanruano1369
@romanruano1369 4 жыл бұрын
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.
@thewilsonchannel9148
@thewilsonchannel9148 4 жыл бұрын
good video
@madbanana22
@madbanana22 10 ай бұрын
now I can say "made with Love"
@lawofrobotics
@lawofrobotics 4 жыл бұрын
I keep getting errors about around the coin needing to index global coins?
@sujit5872
@sujit5872 4 жыл бұрын
did you solve it? if so please tell me
@turtle8558
@turtle8558 3 жыл бұрын
nice
@DraconianRain
@DraconianRain 5 жыл бұрын
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.
@noass
@noass 5 жыл бұрын
in the love version he is using, it uses 0 to 255, but later versions use 0 to 1...
@DraconianRain
@DraconianRain 5 жыл бұрын
@@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.
@pardolagames8994
@pardolagames8994 5 жыл бұрын
@@DraconianRain And I got stuck into this just for today. XD
@victornoagbodji
@victornoagbodji 4 жыл бұрын
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? 🤔
@johnbaxter7582
@johnbaxter7582 4 жыл бұрын
@@victornoagbodji Visual studio code has a great LOVE plugin called "LOVE" and published bschulte
@calapranzee
@calapranzee 2 жыл бұрын
Try to say “get ready for the next battle”
@nolimitlekan
@nolimitlekan 4 жыл бұрын
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
@JoeyMerryfield
@JoeyMerryfield 5 жыл бұрын
why does it sound like maxmoefoe?
@holthuizenoemoet591
@holthuizenoemoet591 Ай бұрын
windows XP? still relevant though
@oakmars8062
@oakmars8062 5 жыл бұрын
does anyone know how to use a isometric view instead of the top down view ?
@user-ob5hj5vn8c
@user-ob5hj5vn8c 4 жыл бұрын
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.
@romanruano1369
@romanruano1369 4 жыл бұрын
The box goes super fast across the screen on my computer I have the same code
@samanthaperry4543
@samanthaperry4543 4 жыл бұрын
where the animation is, multiply by dt in the love.update(dt) function
@saian5479
@saian5479 3 жыл бұрын
𒐪𒐪𒐪𒐪𒐪𒐪𒐪𒐪𒐪__𒐪𒐪𒐪𒐪𒐪𒐪𒐪𒐪𒐪𒐪𒐪𒐪
@r50142
@r50142 4 жыл бұрын
Is anyone sick of that sound yet?
@mohammadradiver2644
@mohammadradiver2644 2 жыл бұрын
Bro are you in funeral?
@jasonmorgan661
@jasonmorgan661 4 жыл бұрын
Omg construct 3 is way better and way easier 😬
@jasonmorgan661
@jasonmorgan661 4 жыл бұрын
@พาราดิน6364 its free up to 25 events. For a 100 a year its worth it to be licensed
@jasonmorgan661
@jasonmorgan661 4 жыл бұрын
@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.
@gachastorys5129
@gachastorys5129 2 жыл бұрын
@@ultimateinternetman4335 unfunny
@ultimateinternetman4335
@ultimateinternetman4335 2 жыл бұрын
@@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
@gachastorys5129
@gachastorys5129 2 жыл бұрын
@@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
Intro to Web Development (1/10): Thinking of the Web
7:41
Hackers at Cambridge
Рет қаралды 647
Falling in LÖVE with Lua
1:12:27
CS50
Рет қаралды 73 М.
The game of the year was written in Lua
5:32
Tom Delalande
Рет қаралды 218 М.
Making My Own Programming Language and Coding a Game in It
10:19
AstroSam
Рет қаралды 1,3 МЛН
Lecture 1: Course Overview + The Shell (2020)
48:17
Missing Semester
Рет қаралды 765 М.
2024's Biggest Indie Hit Was Made With... Love!   LÖVE 2D that is.
9:50
Playing Music on the Oldest Running Computer in America!
27:06
Usagi Electric
Рет қаралды 136 М.
Love2D | Shader Tutorial 1 | Introduction
13:42
SkyVaultGames
Рет қаралды 23 М.
Making a Game in Lua with No Experience
5:52
Goodgis
Рет қаралды 361 М.
How to (easily) add Animations to a Character | Love2D Basics
14:58
Let's Create a Compiler (Pt.1)
1:11:03
Pixeled
Рет қаралды 579 М.