Creating & Changing Rooms in GameMaker 2.3

  Рет қаралды 28,450

Let's Learn This Together

Let's Learn This Together

Күн бұрын

Пікірлер: 160
@crispyhd935
@crispyhd935 4 жыл бұрын
I love you!!! I was literally stuck on this part the last few days and actually gave up
@billiephan6113
@billiephan6113 4 жыл бұрын
Yo, love your content. Juicy and straight to the point!!
@indieklem
@indieklem 2 жыл бұрын
Thanks for sharing, was super easy & usefull to start with room transition !
@Olivia-eb4uq
@Olivia-eb4uq 2 жыл бұрын
thank you so much I was stuck on this for a couple days!
@Unliraisu
@Unliraisu 11 ай бұрын
I got the problem where my character would just teleport to its previous coordinates when it enters a room. I fixed it by removing the collision event and instead used the step even. Basically this: if (place_meeting(x, y, Obj_Player)) { Obj_Player.x = xPosition; Obj_Player.y = yPosition; room_goto(RoomName); } Hope this helps some of ya'll
@nathanbell9449
@nathanbell9449 10 ай бұрын
I initially gave up on making my game two years ago cause I couldnt get this issue fixed so thank you very much
@dailyversesforgod
@dailyversesforgod 10 ай бұрын
You sir, have saved my faith
@SolomonsGameStudio
@SolomonsGameStudio 5 ай бұрын
thank you so much. worked immediately
@Not_nistrepan
@Not_nistrepan 5 ай бұрын
thank you soooo much man
@Unliraisu
@Unliraisu 4 ай бұрын
Hi everyone! Just remembered this comment after months...I'm glad to have helped ya'll!
@magolda6770
@magolda6770 2 жыл бұрын
Worked perfectly
@tiagox3275
@tiagox3275 Жыл бұрын
Thanks! You're a lifesaver!
@jackssparrow1232
@jackssparrow1232 17 күн бұрын
What would you do though if there were two entrances or exits into a room? How do you know which one the player is going into?
@desmormos
@desmormos 3 жыл бұрын
Thanks for the tutorial! For some reason youtube really prioritized showing me your older video over this one so I only found this after following the other one... however my player is not spawning in the correct position (spawns in bottom right corner of room instead, below floor and I can't move. Moves to the correct room though so I am not sure where I am going wrong :(
@LetsLearnThisTogether
@LetsLearnThisTogether 3 жыл бұрын
Double check your variables are being used. Breakpoints are great for doing this, as it allows you to follow the code and see exactly why your player isn’t spawning where they should go.
@desmormos
@desmormos 3 жыл бұрын
@@LetsLearnThisTogether Thank you so much! Something had went wrong with the variables in my warp controller, works great now. Thank you for the help. I hope I'm able to pay it forward one day when I know what I'm doing :)
@Sean_Chaos
@Sean_Chaos 3 жыл бұрын
@@desmormos can you help me? I have the sams problem with you and I can't fix it
@autismandgaming4532
@autismandgaming4532 4 ай бұрын
If I wanted to have an alternate version of this object where in order to go to another room, I would need to be colliding with the object & press a specific button to do the transition (i.e. Pressing up to go through a door), how would I change the code to suit this?
@jackssparrow1232
@jackssparrow1232 17 күн бұрын
I haven’t watched the tutorial yet but maybe place_meeting && e_key_pressed as a variable or something
@cwehden
@cwehden Жыл бұрын
I can get the doors to work perfectly but the fade out/in code makes the game fade out instantly even when not near a door and gives me this error, I'm very new just learning the basics. My variables are the same as yours but with _ conventions newRoom = new_room etc.. oPlayer isn't anywhere near a door but it seems to be initiating the warp controller even though I'm not colliding with the door, I'm not sure why because the door is miles away so there is no collision happening, at least I think that's the case room_goto argument 1 incorrect type (undefined) expecting a Number (YYGI32) at gml_Object_oDoorController_Step_0 (line 9) - room_goto(new_room); ############################################################################################ gml_Object_oDoorController_Step_0 (line 9)
@JosephKChen
@JosephKChen 4 жыл бұрын
Hi Aaron. I was wondering if you could do some videos on conceptual ideas like design patterns? I just learned about the existence of common design patterns like creation, structural, and behavioral patterns but I can't seem to find any information on them in the context of using them in GML. There are some java examples, unity examples, c# examples, but I dont know any of those things so it's hard to wrap my head around what's going on. Can you do these kinds of videos and teach concepts as stand alone videos in addition to your usual videos? I feel like I need to learn how to code from a back end perspective instead of from manipulating an end user experience perspective. This might be hard to teach without showing diagrams and stuff. If there's any other conceptual ideas, I'd love to see videos on them. I don't even know where to look to learn about what are common design concepts.
@LetsLearnThisTogether
@LetsLearnThisTogether 4 жыл бұрын
That's a really good idea. Design patterns are an important concept. I'll add it to my list and start doing some research on them.
@PSTechCR
@PSTechCR 2 жыл бұрын
Thanks as always for the tutorials, hope you can do one day a proper tutorial for touch base controllers
@fatefulseven
@fatefulseven 4 жыл бұрын
Real good content, thank you! (:
@ifrahk8743
@ifrahk8743 3 жыл бұрын
THANK YOU SO MUCH
@maximocosseti966
@maximocosseti966 Жыл бұрын
Very good video, I'll take it into account when making my game, just one question. If I wanted to go from a room 2 to room 3, do I have to add another variable or how can I make it work?
@LetsLearnThisTogether
@LetsLearnThisTogether Жыл бұрын
No, each warp will take you to just one room. So in that warp object, choose which room you go to and where you end up.
@NoicMC
@NoicMC Жыл бұрын
Hi bro. Thanks for the video, it really helps me. But I have a problem with the warped object. It warps me to the starting room (the main menu) when I collide with it. It's really weird, I did the tutorial 2 times but it is still not working,. Can you help me? Thank you!
@NoicMC
@NoicMC Жыл бұрын
I forget to say that I didn't set the starting room, sorry.
@LetsLearnThisTogether
@LetsLearnThisTogether Жыл бұрын
Double check you’ve set the correct room on the object you’re colliding with. Then, check in the room you’re warping to and ensure you’re not landing on another warp object that immediately puts you in the main menu room. If nothing from those two, export your project as a yyz and email it to me at aaron@letslearnthistogether.com and I’ll take a look.
@NoicMC
@NoicMC Жыл бұрын
​@@LetsLearnThisTogether Thank you very much for your reply. Sadly, seems to be that this error isn't that. I sent you the game. Sorry if the error is something stupid. Thank you!
@saxenart
@saxenart Жыл бұрын
Can you only go to the next room or can you also walk back to the other room?
@Sorabotics
@Sorabotics Жыл бұрын
This was a great video! However, I created a second warp object so that the player could go back into the previous room and when I do this, there are two instances of the player. Does anyone know how I can fix this?
@LetsLearnThisTogether
@LetsLearnThisTogether Жыл бұрын
You must mark your player as persistent, and only have 1 of them throughout your entire game. Then only create the player once, in like a start menu or in the start game event, instead of placing the player in the room because the room resets every time you leave and re-enter.
@Sorabotics
@Sorabotics Жыл бұрын
@@LetsLearnThisTogether got it, thanks! I'm currently trying to put a create instance of the player in the obj_player main create event but the game keeps crashing with an error so I guess I should try a start game event XD
@chris9085
@chris9085 3 жыл бұрын
thank you!!!!!!!!!!!!!!!!
@zachstofko
@zachstofko 2 жыл бұрын
Hello. I followed your video (which by the way, thank you) and for some reason, The room warping works perfectly and the black fade transitions starts, but then it completely cuts to the next room without finishing the animation. I don't really know what's wrong since I followed your tutorial exactly how you described, so sorry I'm not able to give any feedback as to why this may be happening, but has anyone mentioned this before? Is it possible this is a simple error that you know of or was there an update that possibly stopped this from happening? Thanks
@ozzyvalentines8264
@ozzyvalentines8264 Жыл бұрын
hello! sorry for asking a question on a 2 year old vid, but im having a super annoying problem and i literally can't find anything on it. so i followed the tutorial 1:1, everything the exact same but when switching rooms it doesn't change the coordinates of the player object. I tried using a debug message to print the coordinates and i found that it DOES put the player object in the correct coordinates, but then immediately switches back to the previous ones (presumably in the step event?) so it looks like its not changing at all. for the step event im just using super basic code "if (keyboard_check(vk_right)) {x += 8}" (like that) so i don't see why that would be messing it up. any idea about what might be happening? thank you!
@LetsLearnThisTogether
@LetsLearnThisTogether Жыл бұрын
My guess is you’ve switched places correctly, but are still moving while changing rooms and it’s reading x as your old location, so it moves you to x (your old x) +8, and it looks like you’re not moving at all. Make it so once you collide with your object, you can’t move at all and then wait at least 1 frame to change your players location.
@newalbacore8352
@newalbacore8352 Жыл бұрын
I have something very weird going on, when I change rooms it ignores the coordinates I used for the warp and instead teleports me to the same position I was in the previous room in the new one. I can't figure out why, I have everything coded the same as in the video
@LetsLearnThisTogether
@LetsLearnThisTogether Жыл бұрын
The usual problem for this is that you’re still moving when the warp takes effect. So the warp triggers, tries to set your position, but then you move for another frame and it puts you back where you were. You’ll need a system to pause your movement when you collide with the warp, and then it should work fine.
@newalbacore8352
@newalbacore8352 Жыл бұрын
@@LetsLearnThisTogether okay, thank you!
@illi8584
@illi8584 Жыл бұрын
@@newalbacore8352 Hello, i have the same Problem, did you fix it with the pause thing? If so, how did you do that?
@newalbacore8352
@newalbacore8352 Жыл бұрын
@@illi8584 nope still haven’t been able to get it I’m stuck on this issue rn, I somehow managed to take two programing classes but I can’t figure out smth this simple
@lililililililil9132
@lililililililil9132 3 жыл бұрын
I did everything as shown, but i dont spawn at the given coordinates, i spawn in the location where i was in rhe old room.
@perra8824
@perra8824 2 жыл бұрын
oh yeah probably too ate for i had that problem but i had a game object in my other room which had an event telling it to go to the start room you gotta take that off
@eefle_weefle
@eefle_weefle 2 жыл бұрын
i followed the tutorial 1 to 1 but my player just goes to a random place when it hit the warp block
@dmac2016
@dmac2016 3 жыл бұрын
Hey the x and y position won't work... neither the viewport...
@ThzMondes
@ThzMondes 9 ай бұрын
i have a problem where the character doesnt show up in the other room but he's set to persistent please help
@Edel99
@Edel99 3 жыл бұрын
Will you be doing any GODOT tutorials in the future?
@LetsLearnThisTogether
@LetsLearnThisTogether 3 жыл бұрын
I don’t have plans to now. But the future is a wonderful mystery!
@SDaviesBowen
@SDaviesBowen Жыл бұрын
Hello! I'm having some trouble with my character- instead of appearing at the coordinates I put in he appears on in the top left corner instead, and also can't move. Do you have any idea how I fix it? Thank you!
@LetsLearnThisTogether
@LetsLearnThisTogether Жыл бұрын
Not without looking at your project. Seems to be a lot not working and I can’t help without seeing more info.
@BoazAdreal
@BoazAdreal 4 жыл бұрын
I am running into an issue where the fade on room transition never occurs. I added a debug message at the beginning of the create event and it never displays in output once despite bouncing between rooms like a madman. :(
@LetsLearnThisTogether
@LetsLearnThisTogether 4 жыл бұрын
Is the code for drawing the fade in the draw event? Is the fade object being created at all? And is it set to persistent?
@BoazAdreal
@BoazAdreal 4 жыл бұрын
@@LetsLearnThisTogether I had not changed the code in objWarpTile to use warp.ETC and was still using the original. Works good now!
@Mukkisopp
@Mukkisopp 2 жыл бұрын
hey, my player doesnt go back from the next room, what do I do? can anyone help please? nevermind I figured it out!
@frasercameron25
@frasercameron25 2 жыл бұрын
Hi! So I'm pretty sure I've followed this tutorial 1 - 1 but when my player collides with the object it takes me to the same room I was originally in but with the coordinates set to the collision box. Would there be any reason why?
@LetsLearnThisTogether
@LetsLearnThisTogether 2 жыл бұрын
If the coordinates you set for the player to be in, in the new room, collides with another object telling it to change back to the original room, that could cause this.
@yourdailyLIFE
@yourdailyLIFE 9 ай бұрын
Crossing my fingers someone can help. I have tried many different solutions for a universal warp object and no matter what I try, I get 2 players when I re-enter my original room.
@technoham9849
@technoham9849 2 жыл бұрын
I got an glitch that when I warp I'll end up in the other end of the room. this has happened on different methods too and changing the cords doesn't work. please help!
@LetsLearnThisTogether
@LetsLearnThisTogether 2 жыл бұрын
If you email me the project at aaron@letslearnthistogether I can check it out.
@technoham9849
@technoham9849 2 жыл бұрын
@@LetsLearnThisTogether how do I send it again
@LetsLearnThisTogether
@LetsLearnThisTogether 2 жыл бұрын
Export your project as a yyz and then email that to me, or upload it to a cloud sharing service and send me that link
@technoham9849
@technoham9849 2 жыл бұрын
@@LetsLearnThisTogether I sent something to someone so idk if that works or if I even sent it to you
@LetsLearnThisTogether
@LetsLearnThisTogether 2 жыл бұрын
@@technoham9849 I got it. I don't understand the glitch at all, but your End Step event is causing the issue. Change the event to a Begin Step event and your transition will work.
@knightnapier3462
@knightnapier3462 3 жыл бұрын
I'm having an issue with the game where the room transitions but the character spawns at the location where he was rather than the point specified by XPosition and YPosition (if it's on the right, he spawns on the right rather than on the left and vice versa). I've followed both of your versions of this and I'm getting this from both ways
@LetsLearnThisTogether
@LetsLearnThisTogether 3 жыл бұрын
Export your project and share it with me through a link on here. I’ll take a look.
@knightnapier3462
@knightnapier3462 3 жыл бұрын
@@LetsLearnThisTogether I got the code working thanks to the tutorial on fading. Thanks for the help!
@jeffmcluck6577
@jeffmcluck6577 2 жыл бұрын
KnightNapier how did you fix this problem? I have the same issue
@salad-chan3382
@salad-chan3382 3 жыл бұрын
So uh i followed everything but- When i collide with the warp i go to the next room but my character isnt visible, it's there because when i got back to the other warp it teleported me to the main room, it doesn't appear in the next room, And yes i do have persistent checked on my character
@LetsLearnThisTogether
@LetsLearnThisTogether 3 жыл бұрын
It’s most likely on a layer behind the background or it’s depth got set too high.
@emilkummerfeldt9836
@emilkummerfeldt9836 3 жыл бұрын
i have an object in my room. if i take it and go to the next room, and back, my object will come back, and i don't want that. can you help me please?
@LetsLearnThisTogether
@LetsLearnThisTogether 3 жыл бұрын
In that room’s settings, mark it as persistent. Otherwise each room starts the same way as it did when you enter it.
@sls_EU
@sls_EU Жыл бұрын
hi i have an issue: when im taking the warp to go to my nextRoom, only the background and tiles are fading and not my instances can you help?
@LetsLearnThisTogether
@LetsLearnThisTogether Жыл бұрын
When you create the fade, either set its depth to be a very low negative number, or create it on an instance layer you’ve placed above everything else. Otherwise it will only cover the layers of a lower depth.
@sls_EU
@sls_EU Жыл бұрын
@@LetsLearnThisTogetheryep i expected that but I moved on and did something else, thank you for your fast reply!
@ladislavtatkotomastik7958
@ladislavtatkotomastik7958 3 жыл бұрын
sorry I can't speak English :)) only translator :)) I was very embarrassed before I realized that each object name must begin with "obj_any name" otherwise it doesn't work by jumping to coordinates other.x = xposition; other.y = position; room_goto (targetRoom); !!!! where does one read it ??
@lost50
@lost50 Жыл бұрын
your voice sounds like Ross from Friends
@stephaniemiller4274
@stephaniemiller4274 Жыл бұрын
THANK YOU XD
@mrhelpful6202
@mrhelpful6202 2 жыл бұрын
hey when i go into a room and leave then go into that room again the player warp stops egsisting do you know how to fix this? should i make that persistent to?
@LetsLearnThisTogether
@LetsLearnThisTogether 2 жыл бұрын
Unless you’ve set your room to be persistent and then deleted the warp, when you go back in the warp will be there. Every time you go into a room that isn’t persistent, it’s recreated from scratch and every instance is placed where it originally was. I don’t know why it would be gone or stop working without hearing / seeing more about your project.
@mrhelpful6202
@mrhelpful6202 2 жыл бұрын
@@LetsLearnThisTogether oh i had the room set to persistent thanks
@jadestormbringer3733
@jadestormbringer3733 3 жыл бұрын
The x and y positions don't work; they just go to the previous x and y coordinates in the next room.
@dmac2016
@dmac2016 3 жыл бұрын
I have the same problem...
@bridgiemarie7989
@bridgiemarie7989 2 жыл бұрын
Have you guys figured this one out yet? Cause I’m having that issue, and I’ve recoded it several times Update: I figured it out. I’m not sure why but making sure the box for solid under your characters object is not checked fixed this problem. I’m guessing then being solid messed up the collision with the warp!
@dmac2016
@dmac2016 4 жыл бұрын
Hmm. It only works when I hit the top left of the warp. I am using GMS 2.3 and the older version worked with the older tutorial perfectly.
@LetsLearnThisTogether
@LetsLearnThisTogether 4 жыл бұрын
I ran into this problem with someone else’s project. They had both objects marked as solid. Removing that fixed it.
@dmac2016
@dmac2016 4 жыл бұрын
Both were not marked solid
@LetsLearnThisTogether
@LetsLearnThisTogether 4 жыл бұрын
Zip up your project and email it to me at aaron@letslearnthistogether.com.
@aviralyadav7529
@aviralyadav7529 3 жыл бұрын
hey ,i have a doubt on changing level as one level gets finished another level has to start but i dont get how can i do so. pls reply and tell me
@LetsLearnThisTogether
@LetsLearnThisTogether 3 жыл бұрын
I’m not sure what you mean. Only one level can be running at a time, but you can switch between levels with the code in this video.
@momoj0j003
@momoj0j003 Жыл бұрын
my player is just walking trough the object. what may be the cause? do i have to code the collision for this object on the Player itself?
@LetsLearnThisTogether
@LetsLearnThisTogether Жыл бұрын
You must have code somewhere that tells it what to do for the collision. It can go on the player or the collision object.
@momoj0j003
@momoj0j003 Жыл бұрын
I checked everything and even downloaded your project… i just startet a new project and copied all in and now it worked… Don‘t know why but thank you for your videos and thank you for your fast reply i was shocked!
@momoj0j003
@momoj0j003 Жыл бұрын
@@LetsLearnThisTogether Do i need for every next warp to have a new Object? because it seems that the variable can not be changed for every instance but for the object in general...
@LetsLearnThisTogether
@LetsLearnThisTogether Жыл бұрын
You change the instance variables in the room editor. You only need 1 warp object, and change the data values to go to different places.
@poisonousdrink911
@poisonousdrink911 3 жыл бұрын
Theres an issue with warping for my friend, The program will warp you to room 2 but not set the character at the coordinates he inputted. It will just leave the player at the same position and switch rooms. Any idea what the solution to the problem might be?
@LetsLearnThisTogether
@LetsLearnThisTogether 3 жыл бұрын
It sounds like the object isn’t set to persistent. If it isn’t, then it won’t move rooms with you to position the player in the new spot.
@radcowboy5985
@radcowboy5985 3 жыл бұрын
@@LetsLearnThisTogether im having the same problem (always warping me to 0'0) , but the object is set to persistent... not sure how to fix it.
@RealLifeKyurem
@RealLifeKyurem 3 жыл бұрын
I followed the tutorial, but the previous room doesn’t disappear when the player collides with the room transition object. Great video, by the way!
@Cross-ol9gw
@Cross-ol9gw 11 ай бұрын
Try to check the box on viewport settings "clear viewport background"
@hamzaaslam381
@hamzaaslam381 2 жыл бұрын
hi , i followed the video properly but the player doesn't spawn on the new points , i also debug it to see the variables but still player spawn on the previous location in the new room
@LetsLearnThisTogether
@LetsLearnThisTogether 2 жыл бұрын
If you want to export your project to a .yyz and email it to me at aaron@letslearnthistogether.com, I’ll take a look. I like finding new problems.
@hamzaaslam381
@hamzaaslam381 2 жыл бұрын
@@LetsLearnThisTogether sure will send you
@hchchch1688
@hchchch1688 Жыл бұрын
Hello, one question, how do I do so that when my character goes to the next room he is in the position that I want? because when he teleports to the next room It is in the same coordinates as where it started.
@LetsLearnThisTogether
@LetsLearnThisTogether Жыл бұрын
When you change rooms, probably using the code room_goto, set the coordinates immediately after. x = y = If you find that not working, you need to find why. Ensure your object is persistent. Double check you don’t have a second character in the new room. If it still isn’t working, then somewhere in your code you’re altering the position of your character. Most likely in the movement code of the player. Ensure your player can’t move after you initiate the room change.
@hchchch1688
@hchchch1688 Жыл бұрын
@@LetsLearnThisTogether is the setting of the x and y position done in objWarp?
@LetsLearnThisTogether
@LetsLearnThisTogether Жыл бұрын
Yeah, I think so. It’s been a bit since I’ve looked at this project.
@hchchch1688
@hchchch1688 Жыл бұрын
@@LetsLearnThisTogether So do I add the coordinates in the collision event with the player? sorry for sending so many messages Edit already solved really thank you very much I was almost discouraged from making my game for not finding a tutorial that I could understand thanks again
@maniek891231
@maniek891231 Жыл бұрын
@@hchchch1688 Would be great if you shared how did you solved it though! :)
@hustllezfrr
@hustllezfrr Жыл бұрын
bruh I followed every single step correctly and that dumb warp object doesn't teleport me to the next room
@gunseleroglu6772
@gunseleroglu6772 Жыл бұрын
for everyone asking x , y not working, you have to check your obj_player is solid or not
@hustllezfrr
@hustllezfrr Жыл бұрын
still doesn't work
@gunseleroglu6772
@gunseleroglu6772 Жыл бұрын
@@hustllezfrr and persistent
@gunseleroglu6772
@gunseleroglu6772 Жыл бұрын
@@hustllezfrr IDK if it's changed but there were boxes that u can assign variables of all rooms and their value
@hustllezfrr
@hustllezfrr Жыл бұрын
@@gunseleroglu6772 I did all that
@noahclarke9615
@noahclarke9615 2 жыл бұрын
for some reason no matter what I do I always end up in the next room but in the same co-ordinates that I was in the last room
@LetsLearnThisTogether
@LetsLearnThisTogether 2 жыл бұрын
Export your project and you can email it to me at aaron@letslearnthistogether.com
@saxenart
@saxenart Жыл бұрын
What does VK mean?
@roqnako
@roqnako Жыл бұрын
I fucking love you
@viniboi_4963
@viniboi_4963 3 жыл бұрын
My home icon is on my main menu room, but it starts on the first level!
@LetsLearnThisTogether
@LetsLearnThisTogether 3 жыл бұрын
Then there must be some code telling it to move to that room.
@viniboi_4963
@viniboi_4963 3 жыл бұрын
@@LetsLearnThisTogether where should i add this code?
@LetsLearnThisTogether
@LetsLearnThisTogether 3 жыл бұрын
What do you mean? You said that your home room is menu, but the game starts on first level. Are you saying that it’s automatically changing rooms and you don’t want that? Or you’re saying you need to know how to change to the first level?
@viniboi_4963
@viniboi_4963 3 жыл бұрын
@@LetsLearnThisTogether lol im sorry i wasn't very clear, so, theres the main menu room, and i want the game to start on it, but even when the home icon is on the main menu room, it starts in the first level
@viniboi_4963
@viniboi_4963 3 жыл бұрын
I think my gms is bugged or something because when i make a child room for my main menu, it goes back to starting on the main menu(which is what i want)
@FlowerPrimrose
@FlowerPrimrose Жыл бұрын
can you do a non fade next room code pls
@LetsLearnThisTogether
@LetsLearnThisTogether Жыл бұрын
The code to change rooms is room_goto() if that’s all you need. Pass in the room you want to go. Usually this code goes in a collision event or key press, as you only want it to run once.
@FlowerPrimrose
@FlowerPrimrose Жыл бұрын
@@LetsLearnThisTogether oh thx your the best
@FlowerPrimrose
@FlowerPrimrose Жыл бұрын
@@LetsLearnThisTogether mello me again I have a question is there any way to make a hallway room without the character turning into a stick
@hexr1655
@hexr1655 3 жыл бұрын
why why why you do not make a new video
@LetsLearnThisTogether
@LetsLearnThisTogether 3 жыл бұрын
I’m editing one right now :)
@hexr1655
@hexr1655 3 жыл бұрын
@@LetsLearnThisTogether I am glad to hear that
Game Maker Studio 2.3 - How To Add Sound Effects And Music
17:56
Let's Learn This Together
Рет қаралды 14 М.
GameMaker Studio 2.3 - How to Create and Use Tile Sets + Auto Tiling
12:30
Let's Learn This Together
Рет қаралды 49 М.
How it feels when u walk through first class
00:52
Adam W
Рет қаралды 23 МЛН
哈哈大家为了进去也是想尽办法!#火影忍者 #佐助 #家庭
00:33
火影忍者一家
Рет қаралды 128 МЛН
Sigma baby, you've conquered soap! 😲😮‍💨 LeoNata family #shorts
00:37
버블티로 부자 구별하는법4
00:11
진영민yeongmin
Рет қаралды 21 МЛН
GameMaker Studio 2.3 - Beginner Tutorial: How to Import and Animate Sprites
15:55
Let's Learn This Together
Рет қаралды 52 М.
TAS Explained: Super Mario Bros. 3 in 0.2 seconds
19:39
100th Coin
Рет қаралды 307 М.
How To Use Events In GameMaker
17:46
GameMaker
Рет қаралды 14 М.
Tierlisting the BEST (and worst) GAME ENGINES
33:51
BiteMe Games
Рет қаралды 232 М.
How Collisions Work in GameMaker Studio 2
21:08
Let's Learn This Together
Рет қаралды 10 М.
3 ways for the camera to follow the player | GMS2.3 Tutorial
18:32
Arend Peter Teaches
Рет қаралды 9 М.
GameMaker Tips & Tricks For Beginners 2023
19:39
Let's Learn This Together
Рет қаралды 6 М.
I Made the Same Game in 8 Engines
12:34
Emeral
Рет қаралды 4,1 МЛН
How to Create and Use Room Layers | GameMaker
11:15
GameMaker
Рет қаралды 12 М.
How it feels when u walk through first class
00:52
Adam W
Рет қаралды 23 МЛН