How to Make an RPG in GameMaker Studio 2! (Part 1: The Basics with Player Movement and Collision)

  Рет қаралды 342,339

Peyton Burnham

Peyton Burnham

Күн бұрын

Support me and these videos on Patreon! / peytonburnham
This is a 6 part series showing you how to make an RPG, good luck! There are TWO VERSIONS of this "Part 1!" This version takes it a bit slower and is aimed at people who've pretty much never used GameMaker, or aren't very confident in navigating it. If you've looked at another basic tutorial before you're probably fine watching the other one instead, it should be right after this one in the playlist! Or just click here: • How to Make an RPG in ...
My Game: peytonburnham.itch.io/rose-of...
Discord: / discord
My tweets: / peydinburnham
My twitch: / peydinburnham
If you have any questions, leave a comment or send me a dm on twitter/Discord!

Пікірлер: 657
@peytonburnham4316
@peytonburnham4316 2 жыл бұрын
Hey all, thanks for checking out this little series! If you want to help me make more videos like this (full turn-based RPGs, platformers, zelda-likes, beat 'em ups, etc), check out my Patreon! www.patreon.com/peytonburnham That'll help me focus more time on these videos and there's a bunch of cool perks like getting videos before KZfaq does, voting on future series, and getting the project files and assets from future videos! Thanks!
@sodaanimates4862
@sodaanimates4862 2 жыл бұрын
your welcome!
@sodaanimates4862
@sodaanimates4862 2 жыл бұрын
i have a question, when i try to run it why does it show this? ############################################################################################ ERROR in action number 1 of Step Event0 for object Player_1: trying to index a variable which is not an array at gml_Object_Player_1_Step_0 (line 1) - right_key = keyboard_check[vk_right]; ############################################################################################ gml_Object_Player_1_Step_0 (line 1)
@theotaylor5301
@theotaylor5301 2 жыл бұрын
man, you deserve way more subs than this, your tutorials a amazing
@seekerandroses
@seekerandroses 11 ай бұрын
hey is this outdated I did everything right but no movement.
@ShadowGorilla91750
@ShadowGorilla91750 6 ай бұрын
can u make it with gml visual pls
@kyh_senpaiowo
@kyh_senpaiowo 2 жыл бұрын
For anyone wondering how to make WASD movement instead of the arrow keys, simply replace them with the letters like this: right_key = keyboard_check(ord("D")); left_key = keyboard_check(ord("A")); up_key = keyboard_check(ord("W")); down_key = keyboard_check(ord("S")); if you want both to work just like I did, just put the "||" symbol, which means "or", between one and another like this: right_key = keyboard_check(ord("D")) || keyboard_check(vk_right); left_key = keyboard_check(ord("A")) || keyboard_check(vk_left); up_key = keyboard_check(ord("W")) || keyboard_check(vk_up); down_key = keyboard_check(ord("S")) || keyboard_check(vk_down);
@Shadowsbackgrounds
@Shadowsbackgrounds Жыл бұрын
dosent work set a #macro W_key 0x57 in your macro file then instead of vk_up you do keayboard_check(W_key)
@floweyfangirl69420
@floweyfangirl69420 Жыл бұрын
OMG TYSM YOU'RE AN ANGEL!!!!!
@Shadowsbackgrounds
@Shadowsbackgrounds Жыл бұрын
no problem theres a lot of diffrent ways to do this but the way i stated makes it clean and controllable versus the alternative methods
@SmellslikePetrichor
@SmellslikePetrichor Жыл бұрын
thank you so much!!!
@Quilbermc
@Quilbermc Жыл бұрын
i dont know how to get either one to work
@joeoligist9823
@joeoligist9823 2 жыл бұрын
don't forget to make the room grid 16x16 (go to top right where the zoom buttons are. it is the first icon and you can change dimensions)
@sammithedemon2232
@sammithedemon2232 2 жыл бұрын
a lifesaver
@foxispersonalaccount7371
@foxispersonalaccount7371 2 жыл бұрын
Thank God I Thought I Did Something Wrong And Panicked Lmao
@DeepFriedVegan
@DeepFriedVegan 2 жыл бұрын
Thank you so much, I was wondering why I couldn't place my wall sprite down properly
@shortbanjos8522
@shortbanjos8522 2 жыл бұрын
Thank you so much! I started placing the walls and I thought I did something wrong in the code.
@outsidethebox_37
@outsidethebox_37 2 жыл бұрын
can this work on a 48x48 setting?
@JonnyBriers
@JonnyBriers Жыл бұрын
You have no idea how much i appreciate the humour at 19:25. As much as I love learning, tutorials are always a bit of drag. You added some fun without dragging it on too long and got us back to work. Respect
@SuDzD
@SuDzD Жыл бұрын
A good way to keep your sanity intact as a game dev
@m7mnch795
@m7mnch795 10 күн бұрын
27:19 was hilarious as well.
@zuluku
@zuluku 6 ай бұрын
7:38 "Let's see what we've done!" "Not much!" LOOOL
@moisturecookies3789
@moisturecookies3789 3 жыл бұрын
You’ve answered my prayers, it was literally yesterday when i though “why are there no tutorials on this”
@peytonburnham4316
@peytonburnham4316 3 жыл бұрын
Oh awesome! I figure there's always future devs out there who just need the right starting point!
@jeffersonares4181
@jeffersonares4181 2 жыл бұрын
@@peytonburnham4316 can u fix the error the Object: Obj_player Event: Step at line 13 : malformed if statement or unassigned variable_place meetting referenced
@ssharkiggo6432
@ssharkiggo6432 2 жыл бұрын
for those very new to gamemaker studio2 (me included) if your grid doesn't fit your players as they spawn at the top left section of the grid. Go to your room and beside the grid icon there would be a down arrow button press it and change the number 32 to 16 and that should work. Nobody is probably gonna see this, but it's pretty helpful to me, just want to share it. Also, here's a sprint script that I made up took me forever, but thanks to this tutoriel at least I know how to do it: sprint = keyboard_check(vk_lshift) if sprint == true { move_spd = 3 } if sprint == not true { move_spd = 1.5 }
@xamora
@xamora 2 жыл бұрын
ok
@defect683
@defect683 2 жыл бұрын
Thanks for the sprint script I always wondered what it was.😃
@ssharkiggo6432
@ssharkiggo6432 2 жыл бұрын
@@defect683 it’s fine! If you have problems, you can change the move_spd to something yours
@defect683
@defect683 2 жыл бұрын
@@ssharkiggo6432 Alright but thanks for the code. It's very useful in my opinon.
@ssharkiggo6432
@ssharkiggo6432 2 жыл бұрын
@@defect683 thanks!
@reinbew794
@reinbew794 4 ай бұрын
The fact that this tutorial is still valid even after 2 years is insane. Teached me GMS2, thank you! Also I love the humor
@polarisation
@polarisation 6 күн бұрын
do the colissions still work? heard there was an update there
@SRobotOG
@SRobotOG Ай бұрын
Bro, imagine toby fox commented "thanks"
@veeleeree
@veeleeree Сағат бұрын
that would be hilarious 💀
@trapido0296
@trapido0296 2 жыл бұрын
Genuinely one of the best tutorials i've seen. Absolutely outstanding!
@obenohnebohne
@obenohnebohne 2 жыл бұрын
Just found your tutorial series. I have a little bit of coding background. But I am new to game development. Thanks for clarifying the y-axis. Seeing it visually helps quite a bit. 16:15 I came for the dialouge system but I am working through the whole series to get to understand where you are coming from. Have a nice day.
@kit4497
@kit4497 2 жыл бұрын
This is breathtakingly helpful, thank you. I've been fiddling with GSM2 for a few days and managed to make a sprite and then yeet it straight off the screen and into the ether. Really glad to have the next steps mapped out.
@tyrone.886
@tyrone.886 Жыл бұрын
Im new to coding and wow this tutorial is so clear and helped me so much, looks and sounds complicated but after practicing for a bit is so easy!
@idlesong
@idlesong 2 жыл бұрын
This is absolutely the best tutorial I've come across. You're clear, precise, and are able to tell us what to do and teach us without backtracking and saying "jk, delete that, do this instead." It's really easy to listen to you, and I appreciate these videos. Thanks, Peyton.
@Cattliss
@Cattliss Жыл бұрын
Idk why this tutorial is so nice, but words cannot describe how easily I'm able to follow this. Thank you so much for this tutorial and keep up the great work!
@Interistic
@Interistic Жыл бұрын
The Music makes this tutorial so much better, music always helps increase the mood of doing what will eventually feel like a job.
@demodee3690
@demodee3690 2 жыл бұрын
God this is the exact tutorial i've been needing. Every other one i've seen just jumps straight into game making process without explaining anything because i guess they assume you've made games before but on a different engine or something. This is actually a step by step breakdown of not just the 'how' but everything else as well. Thank you!
@jmott458
@jmott458 Жыл бұрын
After watching the instructor on the game maker YT channel and then watching you, I have this much more ingrained in my head. He is very thorough and good at explaining it but how you explain it helps the information sink in better for me. So thank you very much for the great explanation on this! I only did two classes of coding in college and that was web design so these tutorials are helping me remember how to do it plus more!
@lavendeereatingreens
@lavendeereatingreens 5 ай бұрын
I remember trying to make a game with these tutorials in a school holiday break. I spent a month working on it before I broke Gamemaker itself (don't ask me how) and the project wouldn't open. Now I'm back to try again with a new laptop, and this music brings back so much nostalgia. I love the down-to-earth way you explain it, as if you're really talking to someone. It feels like it stretches on a bit sometimes, but in a good way, like you're actually explaining the concept instead of just reading off a script. I've never been more excited about making a thing run into walls. Thanks for the tutorial! Moving on to the next one.
@SangHendrix
@SangHendrix 3 жыл бұрын
Oh my god YES!!!! I'm bored of RPG Maker and wanted to learn to create an RPG in GameMaker Studio but the tutorials on KZfaq were not something I was looking for until this. Thank you and keep up with the videos cuz they're all gonna be in my playlist.
@peytonburnham4316
@peytonburnham4316 3 жыл бұрын
That’s great! Hope these help out and I’m hoping to have another one out either this weekend or early next week!
@HappySeedling_
@HappySeedling_ 7 ай бұрын
This is the first programming tutorial I've ever seen that actually kept watching and didn't get frustrated from its really simple and I might stick to this game engine for quite a while.
@reed3274
@reed3274 5 ай бұрын
Ah yes. Nice Music, practical learning, nice voice and starting from the very ground up. Thank You so much
@maria_remedios
@maria_remedios 2 жыл бұрын
The only good guide I've found about this. Thank you!!!
@gon_kuinige
@gon_kuinige 2 ай бұрын
One of the best lesson video I’ve ever watched. What he’s saying is really easy to understand even to those who not good at English like me.
@koma_
@koma_ Жыл бұрын
Thank you sooo much. I've been looking for this exact thing and I'm looking forward to create my own little game in the future with your tutorial ^^. I just woke up today and thought "let's learn how to make a game" so here I am haha
@KZ_90
@KZ_90 20 күн бұрын
You helped me passed my project 3 years ago. Bro, you're amazing. Thank you for creating this video.
@tiffsep7361
@tiffsep7361 2 жыл бұрын
Thank you so much, I took a break from game developing and I've gotten super rusty and this tutorial has help me out so much :)
@peytonburnham4316
@peytonburnham4316 2 жыл бұрын
You’re welcome! Good luck!
@imnotaboxx
@imnotaboxx Жыл бұрын
just got into coding and this was super helpful :D! really easy to understand and i appreciate that
@spidgly
@spidgly 2 жыл бұрын
Thanks mate! me and my friend are making an RPG together and your tutorials have helped a ton with it! I hope that one day it will be good enough to publish
@Interistic
@Interistic Жыл бұрын
Wait a minuet...that's my picture *did you like the game, I did my best to make it*
@jojotag5344
@jojotag5344 2 жыл бұрын
Thank you I love your tutoring You take the time to explain the code we're writing, so the viewers don't just write code "in the dark" Take care!
@aadiththegamer6311
@aadiththegamer6311 2 жыл бұрын
Man... this was a lifesaver.. all the tuts are outdated and this is so good!!!!
@elfo4953
@elfo4953 11 ай бұрын
this tutorial was a breeze, i guess being in the computer science world for a while helped me out, but this was still so much easier (and quicker) than i have ever imagined, thank you.
@cornexpress
@cornexpress Жыл бұрын
the music... so nostalgic, I remember watching your videos and listening to this music. good times...
@indiepunch3443
@indiepunch3443 3 жыл бұрын
Thanks for making this. Btw, I was a supporter of your Kickstarter so this makes your stuff even more interesting !
@peytonburnham4316
@peytonburnham4316 3 жыл бұрын
Oh thank you so much! I hope it's informative!
@indiepunch3443
@indiepunch3443 3 жыл бұрын
@@peytonburnham4316 please continue to make more!
@peytonburnham4316
@peytonburnham4316 3 жыл бұрын
@@indiepunch3443 I totally will! I have a few more in mind!
@turnip4
@turnip4 4 ай бұрын
thank you very much for this tutorial i have wanted to make a game like this for a while now but all the other tutorials where really complicated so thank you again for this amazing tutorial!
@nottheresenpaii
@nottheresenpaii 10 ай бұрын
Love the music in the background. Awesome video brother
@scetik2
@scetik2 Жыл бұрын
WOW THIS IS EXACLTY WHAT I WAS LOOKING FOR, ur so underrated tysm!!
@franktabs7570
@franktabs7570 Жыл бұрын
Dude this is awesome, I always have problems focusing in tutorials because there is no background music to keep me engaged and your casual tone makes everything 10x times easier, this was not something to endure but a very fun way to spend my time.
@journeysmt4484
@journeysmt4484 3 ай бұрын
I've seen three different tutorials on movement and collision, and all three have totally different approaches. Very confusing for a beginner like me. haha. I would say yours is definitely the most enjoyable.
@cajtheninja
@cajtheninja Ай бұрын
INCREDIBLY helpful video. Thank you.
@Sajhaka
@Sajhaka Ай бұрын
Amazing work, i was completely bamboozled by game maker studio but your tutorial was perfect! Thank you so much!
@suichide864
@suichide864 2 жыл бұрын
Have to say, you are pretty underrate hope people find you out so soon
@Kryliph
@Kryliph 5 ай бұрын
Of all the youtube content I watch, I don't think anything has had me crying because I'm laughing so hard quite like the segment from 7:38 to 8:00. It might not even be a joke but the setup, slightly awkward wait and just "not much!" I've showed this part to people that have no interest in game making just cuz its so goddamn funny. Quality videos, my friend.
@shekinahmoreno9338
@shekinahmoreno9338 2 жыл бұрын
I hope this'll help me huhu I just downloaded Game Maker Studio and hopefully this tutorial will still work with the newer version. Great video though! I love the aesthetic too, might as well download your game, it's so nice!
@hitbox4812
@hitbox4812 Жыл бұрын
For everyone having problems with the wall collisions not working going up and down. This works: if place_meeting(x + xspd, y, obj_wall) == true { xspd = 0; } if place_meeting(x, y + yspd, obj_wall) == true { // changed second argument to y yspd = 0; } x += xspd; y += yspd;
@karakuliiii
@karakuliiii Жыл бұрын
i was fighting with this problem for an hour, thank you so much!
@TXRHoly
@TXRHoly Жыл бұрын
You are the goat, thanks!
@crashindeluxe2000
@crashindeluxe2000 10 ай бұрын
It flippin worked, Thank you.
@panther_00
@panther_00 5 ай бұрын
omg thank you! it worked!
@IBeJaMz
@IBeJaMz 3 ай бұрын
i copy n pasted my x collision and for a hour didnt relize ty
@simseq_
@simseq_ 2 жыл бұрын
dude u are amazing! thank you for this clear and great tutorial!!!
@K5RTO
@K5RTO Жыл бұрын
Not only was this tutorial very clear and helpful but you're a pretty funny guy. Looking forward to the whole series and the other stuff you got goin on on your tube. peace, hombre. Cheers!
@qiwang9520
@qiwang9520 Жыл бұрын
This is soooo beginner friendly!! Thank you!!!
@provateaccoint6207
@provateaccoint6207 Жыл бұрын
Hey! I wanna say thanks for helping me to make sense of all this, man. I was able to understand perfectly what you meant and any error that came was able to be fixed because of what you taught (shouldn't have copy-pasted the x if code for the y if code...).
@CariadEccleston
@CariadEccleston 10 ай бұрын
Hey! Thank you so much for this! I had a ton of negative preconceptions about GameMaker, but I decided to give it a shot as an alternative to Godot and this is the tutorial I found and tried. And I think I'm starting to grok the love that folks have for this engine. Thank you!
@junie2816
@junie2816 3 жыл бұрын
thanks!! this tutorial was awesome, i loved it!
@peytonburnham4316
@peytonburnham4316 3 жыл бұрын
Thank you!!
@mechanicalfool
@mechanicalfool 10 ай бұрын
Youre the best ive found at teaching. Thank you
@Kidplayzgamez
@Kidplayzgamez 3 ай бұрын
This really helps!
@jasongts
@jasongts 2 жыл бұрын
My new years resolution is to make a full game this year and i don't know a thing about game creation. this is helping a lot
@saru_chanofficial
@saru_chanofficial 2 ай бұрын
Thank you so much, been curious about getting into game development!
@seawardsundew72
@seawardsundew72 2 жыл бұрын
Thank you!!! This is just what I needed!
@j_bird88
@j_bird88 4 ай бұрын
Great Video! Will use this for creating my new game!!
@eden2477
@eden2477 2 жыл бұрын
I've basically watched all your videoes so far, and I'm just loving them, you explain everything so well. I'm hoping you do some kind of "vehicle" tutorial, like riding a hores or wagon/car, or whatever. That's what I'm currently trying to do, but I'm running into issues... :( Keep it up!
@EnochMC
@EnochMC Жыл бұрын
this would most likely be done by changing your sprite(see next video) to a "vehicle" sprite (completely new sprite with you riding in a vehicle, and just changing your movement speed in player create event
@nflux20
@nflux20 Ай бұрын
done with the first video, you are a great teacher thanks!
@AnotherFran
@AnotherFran 2 жыл бұрын
Thanks man, you're making my dreams true
@whoisalycat
@whoisalycat 2 жыл бұрын
hey everyone! here's how to move with WASD and all. BTW, if you have trouble with the code and stuff, try reverting to a previous version. It worked for me! (just trying to help all of y'all from the same fate i suffered) CODE: create: xspd = 0; yspd = 0; move_spd = 1; step: key_right = keyboard_check(ord("D")); key_up = keyboard_check(ord("W")); key_left = keyboard_check(ord("A")); key_down = keyboard_check(ord("S")); xspd = (key_right - key_left) * move_spd; yspd = (key_down - key_up) * move_spd; x += xspd; y += yspd;
@spidgly
@spidgly 2 жыл бұрын
thanks!!!
@idlesong
@idlesong 2 жыл бұрын
THANK YOU, NEEDED THIS.
@12inchesofworm26
@12inchesofworm26 2 жыл бұрын
i love u
@perunproductions9126
@perunproductions9126 2 жыл бұрын
Thank you! Though i tried the tutorial, the arrow keys do not work. I tried your code and only the WASD keys work but not the arrow keys. I checked several times with the video and I just copy and pasted your code into my game. Is the tutorial outdated?
@nucleatic9287
@nucleatic9287 Жыл бұрын
Thank you so much for this, I really needed this code. :D
@Everytwo_
@Everytwo_ 7 ай бұрын
best tutorial I ever watched
@GoodGuyv2
@GoodGuyv2 2 жыл бұрын
Just started the video, gotta say that theme slaps!
@npcmcishark7379
@npcmcishark7379 2 жыл бұрын
Understood this better than the actual Gamemaker tutorials
@retsevlys
@retsevlys Жыл бұрын
if anyone else is like me and got confused with placing the asset, you have to click specifically the RIGHT alt button, not the LEFT. the LEFT ALT lets you drag around the room. the RIGHT ALT places things.
@shiroisekai_20
@shiroisekai_20 Жыл бұрын
Love the humor i hope i can use this tutorial to make a game that i wanted to create
@dannychatzi4834
@dannychatzi4834 Жыл бұрын
Love it! Thank you!!
@Raditya.Ramadhan
@Raditya.Ramadhan 10 ай бұрын
this is literaly the perfect tutorial, im new to gamemaker 2
@0karas0
@0karas0 6 ай бұрын
Damn, I love you! Thank you, man!!🎉🎉🎉
@Ivan_Imperator
@Ivan_Imperator Ай бұрын
2024, looking to actually make a playable game that i know i will enjoy. thank you for this amazing tutorial and i hope this will help me make a vision ive been thinking of for a while!
@laymoona6879
@laymoona6879 3 жыл бұрын
You're a real hero
@user-jl2ik5ir5o
@user-jl2ik5ir5o Жыл бұрын
very good tutorial
@Lonewulf321
@Lonewulf321 3 жыл бұрын
Very cool and very easy to understand!
@peytonburnham4316
@peytonburnham4316 3 жыл бұрын
That’s good to hear! Making this first part was a little tough trying to make sure i didn’t gloss over anything important
@Lonewulf321
@Lonewulf321 3 жыл бұрын
@@peytonburnham4316 you did a great job!
@peytonburnham4316
@peytonburnham4316 3 жыл бұрын
Lonewulf321 Thank you!
@matt.137
@matt.137 2 жыл бұрын
this is a really great tutorial! im currently trying to make an rpg style game and this helped a lot. would you ever consider making a drag and drop version of these tutorials though?
@viralclickb8
@viralclickb8 9 ай бұрын
bruhh. I HAVE TO WATCH MORE PARTS?! ughhhhh thx for vids bb. smoochiesmoochie
@Natillumi
@Natillumi 9 ай бұрын
I HAVE DONE IT. I HAVE MADE A MOVING SQUARE THAT HAS THE ABILITY TO TOUCH SHIT. jokes aside, very good tutorial! i ran into some issues mostly cause of my own inability to pay attention properly, but yknow, i dun did it. i still have no idea how the code works, like 0 clue, im not sure if im supposed to understand yet but it is how it is 🔥
@Fleshi_Guy615
@Fleshi_Guy615 2 жыл бұрын
I want to make a game like this someday. I have a plot, some basic ideas for mechanics, and a general idea of how drag and drop code works. It's possible to make, given the simplicity of the game and the shorter length i want it to have, but this video should help.
@beafyfeet
@beafyfeet Жыл бұрын
such a well put together and informative video! makes me want to build my own game RIGHT NOW
@lorenzzzoo
@lorenzzzoo Жыл бұрын
This is awesome!
@annadark9278
@annadark9278 2 жыл бұрын
Thank you sm, you rescue my grade in computer science lessons
@kkeough5759
@kkeough5759 2 жыл бұрын
Very, very easy to follow. It's been years since I've used this program (i was a child using gamemaker before it was owned by yoyogames) and this was nice to get my feet wet again. Looking forward to more of your content.
@KEvin-wx1qv
@KEvin-wx1qv Жыл бұрын
this helped a lot! thanks
@iGlacier
@iGlacier 9 ай бұрын
To anyone whose sprite can phase through walls: This is a quick and simple fix, get your wall object and open it, then insert a "Collision" event, (not begin or end, just Collision) and use block code. Then enter a speed set block and have the speed set as 0. Then, go to the property window for the wall object, and make sure the "Solid" property is checked. There's your fix!
@NoplicasGaming
@NoplicasGaming 7 күн бұрын
thanks bro it really works you should make your own tutorials thanks
@superafm535
@superafm535 Жыл бұрын
If you want to use WASD instead of the arrow keys you can use right_key = keyboard_check(ord("D")); left_key = keyboard_check(ord("A")); up_key = keyboard_check(ord("W")); down_key = keyboard_check(ord("S"));
@bosnian1
@bosnian1 Жыл бұрын
thanks
@SinCoTan
@SinCoTan Жыл бұрын
your a legend thank you
@nickyrakotoarimanana6219
@nickyrakotoarimanana6219 7 ай бұрын
So fun and I love how you teach things✨ +1 Subs ✅
@nurselovebright
@nurselovebright 6 ай бұрын
You are AMAZING!
@totallyc00l
@totallyc00l Жыл бұрын
you are a legend man 👍
@_Spify_
@_Spify_ 2 жыл бұрын
This took me 4 hours yay
@mr-timon3705
@mr-timon3705 2 жыл бұрын
real hero you deserve a great life
@black_tea_101.
@black_tea_101. 11 ай бұрын
OMG this is so useful
@Double-D1
@Double-D1 9 ай бұрын
the background music is a bop
@sodaanimates4862
@sodaanimates4862 2 жыл бұрын
THANK YOU!
@fizahhussain3667
@fizahhussain3667 Жыл бұрын
Thank you soooo much for this😅
@fofofilms7305
@fofofilms7305 2 жыл бұрын
"like a big ol' goofball" Thank you for that.
@youcantocan6589
@youcantocan6589 Жыл бұрын
it was hard to understand what you ment but i got it in the end :)
@rajuncajuntv6885
@rajuncajuntv6885 Ай бұрын
The “it’s not fun” killed me 🤣
@Se2ndchannel
@Se2ndchannel 2 жыл бұрын
this is the first time i have actually "written code, i hope i learn well, just need to make it fun, haha
@lou-pw6zr
@lou-pw6zr Жыл бұрын
Thanks that's amazing:)
@Mixliee
@Mixliee Жыл бұрын
ah thank you so mucch for your help ;0;
@MasterSasori
@MasterSasori 2 жыл бұрын
Loved your way of explaining things! Talking about collisions...i still dont get the difference between making/not making the obj_wall solid ( flagged ) and if the event " collision " could be used for blocking the player or if it useless :S
@peytonburnham4316
@peytonburnham4316 2 жыл бұрын
Thank you! And we basically dont use the collision event and the built in “solid” since the collision functions are much more versatile! For example functions are better for checking collision *if* the player were in a certain spot vs only checking where the play currently is!
How to Make an RPG in GameMaker Studio 2! (Part 2: Player Animation)
20:51
How I Learned to Create GAMES (No School Required)
9:47
Goodgis
Рет қаралды 562 М.
Super gymnastics 😍🫣
00:15
Lexa_Merin
Рет қаралды 99 МЛН
Is it Cake or Fake ? 🍰
00:53
A4
Рет қаралды 18 МЛН
How Undertale Was Made and Why its Success Scared The Creator
20:22
ThatGuyGlen
Рет қаралды 2,6 МЛН
Beginner GameDev Mistakes - Ep 1
6:40
Shaun Spalding
Рет қаралды 160 М.
Every Game Engine Explained In 9 Minutes (Part 1)
9:10
Stopshut Games
Рет қаралды 299 М.
The Ultimate Pixel Art Tutorial
14:15
Saultoons
Рет қаралды 1,4 МЛН
Creating Epic Sword Animations with Scratch Cat | Devlog
8:20
griffpatch
Рет қаралды 506 М.
ЛАРИ МЕН ЛОРИДЫ ЗОРҒА АЛДЫМ!
18:40
Асхат Gaming
Рет қаралды 35 М.