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

bounce

  1. S

    Multiple copy of an object with different Texts

    Hi! I've tried to make a game for my child to help him in writing and reading. I've an object with a text (text_draw). How can I multiply this object with different text? I want to make an array include different strings. Each instance of "this object" will use a string of this array to show...
  2. Dr_Nomz

    Bounce function doesn't work correctly?

    I'm playing around with the physics a bit using a top down racer, but for some reason only the rear of the car bounces against solid objects? The front end meanwhile just shakes the car a bit, even though it's still colliding with a wall. This is my code: CREATE EVENT: max_speed = 10...
  3. M

    Car direction variable problem

    I have the following code for the movement of going fowards and backwards in a car: // Variables right = keyboard_check(vk_right) || keyboard_check(ord("D")); left = keyboard_check(vk_left) || keyboard_check(ord("A")); up = keyboard_check(vk_up) || keyboard_check(ord("W")); down =...
  4. eams1986

    GML Joint separate

    Hi! hello again :) I would like you to help me solve this problem that is happening to me with the joints :( obj_moto : Density : 0.1 obj_wheel : Density : 0.1 The bike body creates the wheels in the create and I apply the joint like this: front wheel .. wheel1 =...
  5. GapingPixel

    GameMaker Making 3D Ball Physics for a 2D Top Down Tennis Game

    What I have to do is following, to program full 3D ball movement on a 2D games. A tad lost here since I'm not used to work with 3D vectors, so Im not sure how I should be playing with the Z values. Ball has to bounce relation to the angle it was throw at. So if ball was thrown at a high angle it...
  6. H

    Having problems with bouncing effect

    Hi, first time posting here. I have a problem I have been working on all day... and I can't figure out what's wrong. Simple overview on how I want it to work: (TOP/DOWN Game) I have an player object which is moved by a mouse click and release and sent in that direction where mouse released in a...
  7. N

    [help] bounce in plataform

    Hello, I would like to know how I could make a bounce effect for a platform game, something like springs on the walls, or like what I have in the image
  8. S

    GML Calculating a non-axis aligned bounce/reflection vector for collision resolution

    Non-axis aligned 2D reflection vector GM Version: 2.3 (demo is for 2.3 but the concept would work in any version) Target Platform: All Download: A link to the freely available source code and project is available here: Links: Tutorial Video and Github link Summary This video tutorial builds...
  9. B

    SOLVED How To Do Bounce Sound?

    Hello GameMaker Community. I want to do bounce sound after my object bounce from solid object. I tried like this: Step Event of bouncing object: move_bounce_solid(false) if move_bounce_solid(false){ audio_play_sound(bouncing_sound,1,false) } When I wrote these codes, Bouncing event is...
  10. O

    Keep ball bouncing

    Hi all, I have a problem. I created this game where I have a ball that can bounce against the walls, but I also want to keep the ball bouncing for a minimum speed, so the ball can go faster than that, but it must be bouncing a bit! Here is my step event code: //apply gravity yspd += grav...
  11. gdkid

    GameMaker [Solved]Bouncing off Circle Line

    Hi guys I'm having the problem with making a ball bouncing off a circle line I attached my screenshot so you can get my point. So the white circle is created using draw_circle I'd like to make the yellow ball bounce off the circle line, but since it doesn't have a mask, I found it difficult...
  12. A

    GameMaker Bounce off solid objects (Space like)

    I've got a top down movement system implemented using the distance the mouse is away from the player and this collision technique. Which detects collision really well and i like the slippery aspect but at higher speeds I want objects to bounce off of each other and I'm having a lot of trouble...
  13. A

    GML [SOLVED] Ball bouncing off of enemies but they now do not receive damage

    Just as the title says, I'd managed to sort out the collisions of the ball from fine folks here with a place_meeting code in the ball's Step Event: [code] //Collision Checks// //----------// //Horizontal// //-----// if place_meeting( x - 1, y, all) || place_meeting( x + 1, y, all) {...
  14. A

    GML [SOLVED] Trouble getting Collisions working in Step event of Ball

    Hi there folks! :) I am currently working on a game which is a breakout derivative in which the paddle is a ship and the ball is a ball of energy. I am using GMS1.4 and trying this code in the ball's Step event, yet the ball literally just zones through everything which does not have a separate...
  15. M

    Gamemaker Physics, Speed and Bounce Problem...

    Hello, I help you guys can help. I am using the Gamemaker functions speed, physics and bounce to have my objects move through my room and bounce off eachother wen they collide with any other object. This is so far only done with the drag and drop commands. The problem is that sometimes objects...
  16. E

    Legacy GM Help to stop object's bouncing?

    Hello, I am trying to create some sort of simple object bouncing system. I have a problem that my object starts to bounce infinitely. How I can fix it? Create event: // Variables z_floor = room_height/2; z = -200; zspeed = 0; Step event: if (z < z_floor) { // Gravity zspeed ++; }...
  17. orange08

    Windows Bounce Buds

    Bounce Buds (aka Bounce Buddies) is loosely based on volleyball. Play with a friend, online or in person! Single player mode is also available, where you can play against an imperfect AI. Arrow Keys + WASD control the players, alternatively you can enable a game controller in the options menu...
  18. P

    GML Bouncing off walls

    I am trying to make a mini golf game with the ball bouncing off the walls in the level. I have used some different coding than usual to get my game working, but the normal bounce function wont work. I have got the ball to bounce of the top and bottom walls but it wont bounce off side walls...
  19. P

    Enemy Bounce Off Player

    Hello, Im new in the community of GMS, so I need help. I want my obj_Player to be pushed back from my obj_Enemy after being hit. Thanks for your help. PS: Thanks Google Translate :p
  20. C

    2D bounce and reflection

    Hi there! This is a problem I've been chewing on for a while that I can't seem to fully grasp. I'm just trying to take a ball and have it bounce around a room at a constant rate, say a breakout ball just launching around the room. It hits a wall, and then it bounces off the wall at the angle of...
Top