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

particle

  1. Fanatrick

    Asset - Shaders Fabrique - GPU-accelerated particle physics

    BETA disclaimer Fabrique is currently in BETA, offered at a discounted price for the time being. Expect issues but rest assured this is a work-in-progress. Please report all issues so they can be dealt with. About Fabrique is a 3D, gpu-accelerated particle physics library for GameMaker 2.3...
  2. R

    SOLVED emitter does not work again

    Hello guys, I'm having problems developing a code and I would like some help. I'm creating a system to make a "blizzard", and to create the effects I'm using particles and emitter (I'll put my code to better explain the problem): //Create Event part_sys = part_system_create(); part_emitter =...
  3. PotatoSnail64

    particles only on one instance of an object

    I made a script for particles in gms2, and when I use them on say, a bullet or something, only one of the bullets has particles trailing behind it. Does anyone know what mistake I made? thanks. Here is the code I used for one of the types of particles: #region particle types //basic particle...
  4. 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 =...
  5. J

    Particle part_type_life seems broken, it never stops emitting.

    here is my code, as far as I can tell the particle should live for 20 to 25 seconds and die off, but it doesn't. please help. firstParticleSystem = part_system_create(); part_system_depth(firstParticleSystem,0); grey = make_colour_rgb(93, 89, 89); dust = part_type_create()...
  6. Dreary

    SOLVED Sprite Parts as Particles?

    I have created a disintegration effect that breaks the sprite down into a bunch of objects containing part of the sprite. It works as intended, but is incredibly inefficient. What I want to do is to find a way to make it so that I can disintegrate multiple enemies at a time without taking the...
  7. O

    Can you use multiple colors in a Particle Emitter?

    My game has been using particle emitters because I prefer the workflow a lot more, it just seems a lot cleaner to me than individually creating particles. However, I haven’t found a way to use multiple colors in an emitter. I thought part_type_color3 might do the trick, but that just fades each...
  8. Dragonite

    Windows Particle Lab - A Particle Designer for GameMaker

    Do you like particles? I like particles. I also like making game dev tools, for some reason. Yesterday I thought it sounded like a fun idea to create a particle maker tool. The idea is simple: you design particle effects in a visual interface, and then generate code that you can add to any old...
  9. GGJuanPabon

    GML How make this particle ?

    I would like to do something like this ... part_type_direction(global.Particle2,0,30,0,0) && part_type_direction(global.Particle2,150,180,0,0); that obviously cannot. What I'm looking for is that when my character falls to the ground, dust is generated both on the right and on the left...
  10. Coded Games

    Particle Systems and Time Manipulation

    So currently my game uses objects as particles because the game constantly plays with the speed of time. One second everything will be full speed the next everything will be at 1% with very subtle movement. Overall the object system works alright but I am constantly looking to improve the...
  11. hughrock18

    SOLVED Checking For Active (Drawn) Particles

    Hello everyone. The title pretty much sums up my issue/question. I have the game paused and I don't want to unpause until a specific particle has completed its lifecycle (no more particles of that type are being drawn). So I want to use an if statement to check whether or not that particle is...
  12. 1up Indie

    GameMaker Action scene - Animated background like in megaman or manags

    GM Version: GMS2 Target Platform: All Summary: This video tutorial shows you a very neat way how to make an action screen with particles in gamemaker studio. Technically you would call this vfx (visual effects) but action screen has more punch in the wording. Where have you seen such a thing...
  13. A

    Particles don't want to disappear instantly

    Using Game Maker Studio 2 ok for a little bit of context i'm doing a game of puzzle where you have to switch between dimension to get to impossible places and since there is particle in dimension 1 when you switch of dimension (dimension 2) we can see the particle disappear but slowly and i...
  14. 1up Indie

    GameMaker All direction dragonball laser beam

    GM Version: GMS2 Target Platform: All Summary: This video tutorial shows you how to make a laser beam in gamemaker studio for all directions. You will get an insight how particles systems work and how to utilize lengthdir to draw the laser on the screen towards the direction of the mouse...
  15. Null-Z

    Particle Problems(CLOSED)

    I'm trying to create an "after image" effect for a projectile object. the problem is the projectile itself changes it's angle on creation to point toward the player object. I've tried but that does nothing. (obj_ParticleExper is the object I want the particle to match angle orientation.) what...
  16. Liam Earles

    Legacy GM Particles keep disappearing

    So, I was working on a snow particle effect for my game, and while the particle is created successfully, it would only be created once. I'm trying everything I could to loop the effect but I can't find anything about recreating the particle effect after being created once. Here's the piece of...
  17. D

    Particles [SOLVED]

    I make space game, but i dont know how to make cool space background. I think there should be particles, but i dont know how to do it without marketplace programs. If someone knows any codes for this, help please.
  18. R

    Help Creating Dynamic Particle Speed Along Y Axis

    Hello GM Community, So i created the following particle effect following some youtube guides: //// Light Beam Noise System lbeamNoiseSystem = part_system_create(); //// Light Beam Particles lbeamNoise = part_type_create(); part_type_shape(lbeamNoise, pt_shape_line); part_type_size(lbeamNoise...
  19. JasonTomLee

    Asset - Demo VFX- Particle Demo

    Links https://marketplace.yoyogames.com/assets/8329/asset-vfx_demo https://jasontomlee.itch.io/vfx-particle-demo https://twitter.com/jasontomlee VFX Particle Demo -Learn how to use the native Gamemaker Studio particle systems using this demo -Everything is simplified and concisely written...
  20. D

    Glitch when rendering lots of soft body particles

    I started playing around with the soft body particle system trying to create fluids and came across an odd rendering glitch. Here's a screenshot of the glitch: https://imgur.com/a/Ie0Ne1l It looks like the vertex buffer is getting overrun. Is there a limit to the number of particles allowed...
Top