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

y_scale

  1. T

    Legacy GM Issue with x_scale/y_scale

    It seems like a simple problem, but I just can't figure it out. When I increase the scale of an object it usually works fine. The code is as simple as if (grow == true) { image_xscale += .008; image_yscale += .008; } Whenever grow is false, it should stop...
  2. M

    x_scale help

    Hi! so Im working on a 2d platformer and I have been having some problems with the x and y scale coding ive tried multiple things and now i have this: if (key_left) { image_xscale=-3; image_yscale=3; if (key_right ) { image_xscale=3; image_yscale=3; } i also used this code...
Top