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

doesn't work

  1. VisscaGem

    GML Character not moving left nor right with a simple code.

    //In the create event: moveSpeed = 4; moveX = 0; moveY = 0; //In the step event: var _right = keyboard_check(vk_right); var _left = keyboard_check(vk_left); var _up = keyboard_check(vk_up); var _down = keyboard_check(vk_down); var _inputX = _right - _left; var _inputY = _down - _up; moveY =...
  2. J

    GameMaker [SOLVED] Draw text on object doesnt work

    Hi Guys, In my script, two objects are placed in a desired position. After both have been placed, a text is to be generated. However, my text is never created. There are no error messages. All arguments are given and set. I hope you can help me on. My Code floorDefault_x = argument0...
  3. T

    GameMaker font_add() not working, need help please

    I have been stuck in this issue for a while now. I can get the function font_add() to work. I added a new font and tried to draw text with it but no text is bieng written on the screen when i run the game. This is the code i used in the Draw GUI event: draw_set_color(c_red)...
  4. P

    GML Jump animation won't work

    I'm making Super Mario Bros. in GameMaker, and I've run into a problem. Well, I've actually had this problem for quite a while, but it was really bothering me lately and I wanted to find a solution. Basically, I have separate sprites for Mario's walk animation and his jump. Mario does have a...
  5. X

    Legacy GM [Solved] No movement in a physics game after movement keys get set to variables?

    Basically, as soon as I declared, something like the spacebar as a variable and replaced the spacebar action to a variable for all of the actions of my game's controllable tank, nothing can be moved anymore; not the turret, not the hull, nor can you shoot, not even then camera can be controlled...
  6. X

    Shaders Light shading; what am I doing wrong?

    So, I followed this tutorial... twice even, because the first time I was rushing things for a particular reason... But now that I am not rushing things, have a bit more knowledge and understanding in terms of programming, I tried to attempt the same thing twice. And I really need this for my...
Top