Thank you for watching! What did you think? Any questions or suggestions? Reply below 👇 Also make sure to join our Discord server: discord.gg/TykHyqK
@brainfreezeanger3 жыл бұрын
Thank you! I use the debugger all the time but I never really sat down to learn what every button does, so I learned a bunch of useful stuff!
@gdomjan833 жыл бұрын
Thank you very much. I've been using the basic functions of the debugger for a long time but I never took the time to learn most of its functions. This tutorial will speed up my debugging a lot.
@misterr30833 жыл бұрын
This is amazing, thanks so much Matharoo!
@northoltappsltd86803 жыл бұрын
Really useful, thanks! Like others commenting here I have been using the debugging features in a limited way, this will help enormously
@wavelength38563 жыл бұрын
Fantastic overview of the debugger! Really liked the examples; thanks for sharing this great info.
@willm1273 жыл бұрын
Very cool! Didn't know about clicking an instance to reveal more about it :o Keep it up!
@Limekys3 жыл бұрын
The same, i know about all features of debugging, but about clicking on object not!
@GameMakerStation3 жыл бұрын
Fun fact, I didn't know either! Found out while researching for this video.
@funnygames933 жыл бұрын
Great tutorial! Thank you!
@WangleLine3 жыл бұрын
Hell yeah, thank you for this!!
@GrrrVahrrr3 жыл бұрын
Thank you! This is very helpul.
@pinatranaves Жыл бұрын
Hello friend, thank you very much for the video. I'm managing to capture more information from the instances. I'm a beginner and I'm programming using DnD. So far it's working but... I have a problem that I've lost days trying to solve: when an Effect Layer is activated using Filters and Effects, in object movements, they are shaking. A certain "tearing" is happening in the object. Motion is not fluid (even if the effect layer is behind or in front of the moving object) Doing the checks you indicated in the video, on average the game's fps is at 1500 and the memory at 17mb. Do you have any idea what it could be?
@sabriistars3 жыл бұрын
hello matharoo I bought your crafting course and I can't fix the freeze. could you help me?? The debugger signals the error in objetcs \ oEnemyParent \ Step_1.gml
@GameMakerStation3 жыл бұрын
Hi Sabrina, could you please create a thread on the Q&A section of Udemy? Paste that event's code there and also upload your project if possible (go to File -> Export Project, upload the .yyz file you get to some host (such as Google Drive, Dropbox) and link it there). Cheers
@x-zykron-x3 жыл бұрын
I have used the debugger several times, to the point where I have had to delete line after line of code because the tutorial doesn't seem to match up correctly with the current version of gamemaaker. I HAVEN'T BEEN ABLE TO RUN THE GAME EVEN ONCE. I had such an absolutely awful time on Gamemaker, I can't get any code to work on Gamemaker 2. :(
@GameMakerStation3 жыл бұрын
You can get help in our Discord server, link in description
@Pyxill3 жыл бұрын
I need help with gamemaker1.4 Every time I wanna export a game to android it tells me lint has errors even tho I don’t use android studio
@jessedoes71623 жыл бұрын
hey can you help me out im new to game maker and whever i try to run my game it says FAILED: Run Program Complete For the details of why this build failed, please review the whole log above and also see your Compile Errors window. im on mac and i tried to find a solution on yt BUT NOTHING pleaseeee its been 2 weeks and still nothing
@GreenCream3 жыл бұрын
thx
@filkata933 жыл бұрын
Any good way to catch memory leaks using the debugger?
@GameMakerStation3 жыл бұрын
Keep looking at the graph. Execute whatever you think is causing your memory leaks and see how the memory usage goes up. Disable that line of code that you believe is the culprit, and repeat the same procedure and see if the memory goes up now. At least that's how I do it. You can also use the Watch section to check if any "lost" indices still hold a data structure (if it's related to that). If you need more help I suggest you join the Discord server linked in the description.
@demonicamente9 ай бұрын
can you help me?
@jizosgoescrazy3 жыл бұрын
MAKE_GAME(); NO
@Evanski3 жыл бұрын
Make game(); No = true;
@GameMakerStation3 жыл бұрын
It no make game???
@ignaciosb87793 жыл бұрын
Interesting code. It returned philosophical thoughts in my head.
@ignaciosb87793 жыл бұрын
Thanks man. As I said sometimes you raise my interest in things I wasn't before. I rarely rarely use the debuger, I use my own one but until now I didn't know about profiling, other & graphic(for textures & surfaces) and that's exactly what I need right now to analize how to improve performance in a mobile game.
@GameMakerStation3 жыл бұрын
Good luck! Optimizing mobile games is always a tough one.