• 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!

spriteindex

  1. S

    Coding help

    I'm SUPER new to game maker and just need a bit of help with some coding. Let's say I have two Objects, Object A and Object B. I want to make it so when I interact with Object A, Object B's sprite changes. How would I go about doing this? Help is much appreciated :)
  2. M

    GameMaker Does this code work/is viable? changing sprite index of player

    oPlayer create event if (oPlayer.hspeed = 0) and (oPlayer.vspeed = 0) { StandingStill = true; } if (oPlayer.hspeed > 0) { StandingStill = false; } if (oPlayer.vspeed > 0) { StandingStill = false; } oPlayer step event if (StandingStill = true) { sprite_index = sPlayerIdle } if...
Top