I am doing a weather simulator for my game and I thought the built-in particle system would be excellent for rendering snowflakes. It turns out those particles cannot have values changed after they have appeared so if the player press a button so the screen moves in a certain direction it now looks like it starts to blow in the other direction(the X position of the snowflakes remains the same).
I have an image of a snowflake I would like to render 60 or so times at once, on different positions. When a snowflake reaches the end of the screen it should spawn at the other end. That is on both axes so when Y > ScreenHeight then Y = -SnowflakeHeight and if X > ScreenWith then X = -SnowflakeWith and if X < -SnowflakeWith then X = Screenwith.
I tried to make a function that draws all snowflakes and loop that function in the draw function but I am terrible at looping and it crached upon starting the game.
Make my own particle system
Forum rules
Before you make a thread asking for help, read this.
Before you make a thread asking for help, read this.
Make my own particle system
If you understand me or not, that is not my problem.
Re: Make my own particle system
- Easy way: use existing particle system along with https://love2d.org/wiki/love.graphics.translate that way you can move all particles at once when player press "a" button and particles need to be moved all at once.
- Laggy way: do not use any particles or batches or instances, just plain draw call for every snowflake. Will lag if you need more then 1000 (maybe 10000 max on top pc) snowflakes.
- Hard way: do not use existing particle system, use https://love2d.org/wiki/love.graphics.drawInstanced to draw your own "particles". With custom format for attached mesh https://love2d.org/wiki/Mesh:attachAttribute you can specify snowflake position, direction, speed, oscillation period, whatever you want, and use that in vertex shader to calculate actual snowflake position every frame. Then with https://love2d.org/wiki/Mesh:setVertexAttribute you can change parameters for exact one particle (for example that one that reached bottom border) to whatever you want after particle was created and lived for some time.
-
- Party member
- Posts: 356
- Joined: Wed Jul 03, 2013 4:06 am
Re: Make my own particle system
Eh? You can specify the x and y, using love.graphics.draw(ParticleSystem, x, y), where ParticleSystem is the object created with something like
and then, when you want to start emitting particles you do
Then in the update, you want to move and emit with each update, and this will add more snow, and these can all be done relative to the screen location with the love.graphics.draw call above
note- this is mostly pseudo code to give you an idea on how a falling snow could work. I think you might still add spin and stuff too. I've done this same basic thing, and this is roughly what I did. It's nice, because it's easy to reuse most of the code with slight changes for falling ashes from a fire, or rain falling, etc.
when it's done just call-
ParticleSystem:stop()
and then when you want to start it up again, just call emit above.
Code: Select all
self.imgs=love.graphics.newImage("game/img/snowflake.png")
ParticleSystem=love.graphics.newParticleSystem(self.imgs, 450)
ParticleSystem:setSpeed(0.03)
ParticleSystem:setLinearAcceleration(3, 6, 8, 12)
ParticleSystem:setEmissionRate(20)
Code: Select all
ParticleSystem:emit(1)
Code: Select all
ParticleSystem:moveTo(love.math.random(map.camera.x-320, map.camera.x+320), love.math.random(map.camera.y-200, map.camera.y+200))
ParticleSystem:update(dt)
when it's done just call-
ParticleSystem:stop()
and then when you want to start it up again, just call emit above.
Re: Make my own particle system
I made it my own way. Thanks for trying to help me anyway.
If you understand me or not, that is not my problem.
Who is online
Users browsing this forum: Bing [Bot] and 6 guests