• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

slide

  1. J04N

    GML The Slide / Dash animation doesn't start from the beginning

    Hello everybody, i'm doing the player Slide/Dash animation for my game and i have a little problem, what happens is that when I do the action "slide" the character does not perform it in a normal way, since the animation does not start from the beginning and does not end up doing it in a...
  2. T

    GameMaker Dash

    Hello, I want my character to do a dash, but every time I write a code instead of slideing, the character teleports. The only way I can find it to slide is with keyboard_check, but I don't want the player to only be able to press the button once and have to wait for the animation to finish...
  3. M

    Setting Alpha to Adjust based on distance between 2 Points

    I have an object that slides back and forth. I want the object to: - fade in as it nears Point 1 (x) - fade out as it nears Point 2 (x + 210); so the alpha should be 50% when the instance reaches 105; I'm not sure how to even start this. Any ideas? - Thanks!
  4. T

    Fading between frames in a sprite

    Can I fade from one frame to another in a sprite? Like in a slide show? Thanks and BR, Thorsten.
  5. G

    GameMaker Looking for advice on structuring collison logic to allow for diagonal walls

    I'm working on a game with Asteroids style movement, so I'm using motion_add for thrust and 360 degree rotation. I currently have collision working nicely using a simple horizontal then vertical check, which allows the player to continue "sliding along" rectangular wall objects they collide with...
  6. Arlan64

    want to create ice physics w/ friction in a 2d platformer (GM8.1)

    Hello guys! I'm stuck with some complexes codes (bc i'm a noob but nvm) when I try to put friction physics to create an awesome ice block for place it on my rooms. I search to set the friction at 0.4 at begin of the hsp movement, and to set the friction at -0,4 at end of the hsp movement I'll...
  7. P

    Can't figure out how to wall hug (Drag and Drop)

    Hi everyone, I have a top-down game I'm starting to learn, and I've got the directional change etc down pat, and the collision with the walls works. However, when I collide with a wall I cant move along that wall while walking diagonally. It seems to almost stick me to the wall and restrict my...
  8. N

    Object slide on ice in x and y

    Hello! Newbie here. Top down game, object can move in X and Y, 360° "Step" is motion_set(image_angle+90, 1); and "key down" is image_angle+=3; So it always move forward and turn left when key press. I need to make object slide like on ice little forward of it previous direction while key down...
  9. E

    Legacy GM need help with platformer ice block

    hey yall, needing some help with an ice block, here is the code. i want my player to slide on the block. CREATE OF PLAYER: ///intialize varibles grav = 0.7; hspd = 0; vspd = 0; jumpspeed_normal = 8; jumpspeed_powerup = 10; jspd = jumpspeed_normal; speed_normal = 5; speed_powerup = 7; spd =...
Top