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

partcile

  1. PotatoSnail64

    GameMaker Problem with particle direction

    Why are the particles only moving in one direction? (90 degrees) And how can I fix it #region particle types //flamethrower particle var _p5 = part_type_create(); part_type_shape(_p5, pt_shape_disk); part_type_life(_p5,30,50); part_type_alpha2(_p5, 1,0)...
  2. T

    Particle system broke? don't know why.

    Title says it all, no particles will display to the screen anymore. I just switched computers, and I can't seem to get any type of particle on this one. Older exes of the game work fine though. Here's the code, any help would be appriciated. gml_pragma("global","init()"); #region var _p =...
  3. Silas the Dev

    Clear particle systems

    In my game, the game restarts when the player has taken enough damage. When the game restarts, particles are still being created in the same spot they were in the last iteration when they aren’t supposed to ( I use part_emitter_stream.) I know I could go into the end step event of each particle...
  4. Carloskhard

    GML How to stop a particle system properly [SOLVED]

    First of all: I've already read multiple threads about this in this forum but none of them work so I need help. I created a particle system inside my main object like this: But then I destroy event of that object I do this: part_particles_clear(part_emit_chispas)...
  5. K

    Legacy GM How DO You Change The Depth Of Particles?

    Okay My Game Uses Quit A Bit Of Particles But They Go Behind All My Tile-sets! I Try To Set The Emitter Object To Have A Lower Depth Than My Tile-sets Or At Least Be Able To Know How TO Change The Depth Of My Particles.
Top