jump

  1. LEFH

    SOLVED Problem with collision and jumps

    Hi! I'm learning how to code these days and find a bug in my game, basically if the player collides with a vertical block and holds jump he makes a teleport (video attached). This doesn't happen all the time but I would love to know what is wrong with it. Thanks! Jump: if (_ground) // só...
  2. M

    how to make image scale for wall jump

    for var meeting_right = place_meeting(x + 1, y, oBlock); var meeting_left = place_meeting(x - 1, y, oBlock); onwall = meeting_right || meeting_left; how do you incorporate image scaling to make it look left on left wall and right for right wall
  3. Xenotrigger

    GML Updated Jump and Movement Tutorial

    Is there an updated double/variable jump tutorial out there? I’ve been having issues getting the double jump to work properly. I would imagine that this would affect other physics oriented code as well. Any new tutorials or tools/information dealing with the subject would helpful!
  4. Tangerine

    GameMaker Top down with z-axis depth help

    Hello! I was following this tutorial: I managed to make it work, but I have depth problems with the platforms that float (their z are less than zero) I sort my instances this way: Player and trees: depth = -bbox_bottom; Platforms: depth = -bbox_top; The depth sorting I made works well...
  5. Tangerine

    GameMaker How to apply delta time to gravity?

    Hello! How should I apply delta time to the jump system of my game? This is what I have tried: if (on_ground){ move_z = -_jump_height; } move_z += zgrav * delta; var _move_z = move_z * delta; z += _move_z; At my normal room speed (60 fps) it works fine. At 30 fps the jump seems not to...
  6. T

    GML Difficulty understanding Jump code

    i've seen a tutorial about creating gravity and i'm in doubt about the functioning of the jump code vsp=0; grv=0.3; vsp=vsp+gvr; if (place_meeting(x,y+1,oWALL)) && (key_jump) { vsp = -7; } y = y + vsp my doubt is, why doesn't the player character just teleport up as if i change the code to...
  7. Daniel Mallett

    GameMaker Internal IDE hyperlinks

    Hey everyone. Hope your are all doing well. I want to make a table of contents for my code. Is it possible to do this in GameMaker. TABLE OF CONTENTS: Function link number one Function link number two Function link number three // CLICKING Function link number one TAKES YOU HERE function...
  8. Oachkatzl Games

    Android POG JUMP

    Pog Jump 1.1.62 - ADs disabled , placeholder advertising This game will challenge you and your skills. In this game you have to conquer the tower. Complete the levels, jump best times in meters and collect gold coins in the meantime. With the gold coins you can give your ball an individual...
  9. Bobo The Cat

    Released On Steam | Bobo The Cat | Free Marioid (Jump'n'Run + Metroidvania)

    Download here: https://store.steampowered.com/app/2232950/Bobo_The_Cat/ Or here: https://bobo-the-cat.itch.io/bobo-the-cat After 5 years of working day and night my first game is finally released. In this Metroidvania structured Jump'n'Run you will learn abilitys , like jumping on...
  10. GrayUser111

    Problem With Jumping Animation

    I made a jumping animation sprite and I want to make it apply when the player presses the space button but Idk how! so please help me. I have 2 events for the player here it is: Create: grv = 0.2; hsp = 0; vsp = 0; hspWalk = 3.5 vspJump = -6; canJump = 0; Step: var _keyRight =...
  11. Huko

    SOLVED i wanna make the second jump less powerful

    so I just started working on my game but I realized that the code for the double jump is really missed up and I think I need to adjust the second jump so it be perfect for jumping between platforms (I want the second jump to be at least (0.5*the first jump)) Here is my code...
  12. T

    GameMaker Wierd stop before landing

    Hello, I have a strange problem, when my character jumps there are moments where it stops for a moment before colliding with the ground and then collides, I don't know why it is and I haven't found any way to fix it. This is the code for Colliding: vps = 0; if (place_meeting(x ,y+vsp, Object2))...
  13. DogezRule

    I am new to gamemaker and want to make my character jump

    I would like to make my player jump with space and come down what code or setting would I use for that this is my code for movement: key_up = keyboard_check(vk_up) or keyboard_check(ord("W")) key_down = keyboard_check(vk_down) or keyboard_check(ord("S")) key_left = keyboard_check(vk_left) or...
  14. Leohpaz

    Asset - Audio 90 Player Movement SFX pack

    I just released 90 Player Movement SFX asset pack! 90 original and hand-crafted sound effects inspired by the classics of RPG and Platformers to give your game the perfect retro-aesthetic for only $1,99. Not ready to make the investment yet? This pack comes with 12 FREE TO USE samples! Click...
  15. PJProgramming

    GameMaker Falling Collision Issues

    Trying to code a simple platformer and I'm having some issues with falling onto platforms. The player character will either be slightly above the platform when he lands or slightly below. If I use full numbers for the gravity variables (1, 2, etc.) I don't have this problem but then it messes...
  16. firestar

    SOLVED Whenever my character is next to a wall and jumps it bugs

    Whenever I am touching a wall and jump my character starts to move up and down violently and I want to fix is. Is there any to fix this? Also I don't know how to link a video to this post where it shows the bug
  17. wes.salt

    GMS:2 [SOLVED] Adding a 2nd jump after Edge Counter

    Hello, I've just started learning GMS and was stuck at the jumping problem for quite a while. I'd be appreciated if someone can help me with this The edge code I used was taken from Flynn's Advanced Jumping (Coyote Method), it worked fine but I couldn't add a 2nd jump right after the edge...
  18. B

    Help me with the jump?

    Hola disculpa las molestias, tengo un problema serio con hacer que una variable funcione xD y me ayudes a resolver mi código? aquí está mi código: [CÓDIGO = gml] Que quiero que no pueda saltar si está en el aire, solo cuando la velocidad vertical sea igual a 0 /// Saltar // Animación if vspeed...
  19. Pfap

    wall jumping in corner problem

    When my player object is on the ground and touching a wall and the space bar is pressed the player briefly rises and then gets pushed down. I'm looking for some guidance or ideas others may have implemented when working out a wall jump mechanic. In my room I have a player object with a square...
  20. eams1986

    iOS SuperBattle2 51 MiniGame

    Hello! Friend here I show you a MiniBattle to have an entertaining time I hope you like it :) 🔥Link del juego🔥 Android : 📱🕹 👉 https://play.google.com/store/apps/details?id=com.youdevice.superbattle2 IOS : 📱🕹 👉 https://apps.apple.com/us/app/superbattle2/id1552012211 🗒 Description: Here's...
Top