one-way

  1. JeanSwamp

    GameMaker Jump Through Platforms

    So today I was trying to fix something that I've been delaying for a long time, and I actually managed to fix it. Now the problem is, somehow I managed to mess up and forgot what was the thing that I had to change in order for it to work. The problem I'm having is this: When standind on top...
  2. P

    One way pathfinding, possible algorithm

    Hi guys I'm using mp_grid_path to calculate paths in a 2d grid, and its working well. However I want to be able to make certain cells one way, so I can have one way corridors for example. I realise mp_grid_path doesnt support this sadly, so I'm looking for a way to do it without coding my own...
  3. K

    Legacy GM [SOLVED!] One way platformer collision (jump thru platform)

    So using bits and pieces of the rough platformer code you can find on youtube, I've managed to make one way platforms using the following code: var vcollide; vcollide = instance_place(x,y+vspd,oSolid); if (vcollide != noone) { if ((vcollide).type ==1) { while...
Top