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

desynchronization

  1. T

    GameMaker Multiplayer desynchronization

    Hello, I've been trying to fix a synchronization problem with my multiplayer characters for more than a week. The time between sending the movement information and processing the information for all clients is so high that the character teleports back with each movement, which is very...
  2. S

    GameMaker attached objects desync when moving at high velocities

    can someone tell me why when doing this in the step event thrust.x = x + lengthdir_x(-12, dir) thrust.y = y + lengthdir_y(-12, dir) makes it desync when moving at high velocities? doing this in the end step event fixes it but why? the thrust x and y doesn't get set to anything before it...
  3. D

    Legacy GM Desynchronized parallax scrolling problem

    Hi everyone, i tried to add a simple parallax scrolling effect to my platform by this code found on a tutorial. Object: obj_parallax Create Event: ///Sets the Parallax Factor parallax[0] = 0; for (i = 0; background_visible[i]; i++) { parallax[0] = background_x[i] / 100; } Step Event...
Top