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

check collision

  1. U

    Check collision only in y axis

    Hey, i'm triying to make a tetris ghost piece, but it glitchs only in this case my code is if place_meeting(x, y, solid_o){ y -= 8} if !place_meeting(x, y + 1, solid_o)and(!place_meeting(x, y + 1,wall_o)){ y += 8} if place_meeting(x, y, wall_o){ y -= 8 }
  2. giraffeman210

    GML Visual Random Enemy Movement For A Maze Game

    I am trying to make random enemy movement work for my maze game but can't find any tutorials on how to do it. I am trying to make it work so the enemies move in random directions but can not choose backwards or where there is a wall. Below is a response I had gotten but I don't know how to add...
  3. B

    Trying to have third object created where two other objects collide

    Hello Everyone, As the title suggests, I have 2 objects that will collide with each other somewhere, or anywhere in a room and I am trying to make it so that a 3rd object is created in the place where these 2 objects collide. However, I tried using the check collision function and using...
Top