-
Notifications
You must be signed in to change notification settings - Fork 224
Proposal: simple particle systems using "emitter()" method #226
Comments
It should be pretty easy to compose and more flexible with kaboom's existing component system: here's an example: loop(0.1, () => {
add([
pos(mousePos()),
sprite(choose(sprites)),
origin("center"),
scale(rand(0.5, 1)),
body({ solid: false, }),
lifespan(1, { fade: 0.5 }),
move(choose([LEFT, RIGHT]), rand(60, 240)),
]);
}); |
Is this feasible, performance-wise? I'm thinking of a full-view rain effect (rain drops) + some smoke / fire spots. |
This should be the fastest way possible in Kaboom, since with the component system you're already only paying for stuff that you use, optimizing this would be optimizing the general component system and rendering. As long as you don't let the particles participate in any physics events (don't give them One possible thing that might be slow is, every objects will be sorted by their layer and z value per frame, so if there's a ton of particles they might slow down the sorting, where internally they might don't really need sorting |
Alright. Thanks for explaining it.
This would really sound more real-world-like. |
Yeah it's something I've been wanting to do. Currently the But I'm not following what you meant obj throwing another, how is it mechanically different from throwing themselves? Or it's just semantics |
Hello. Regarding objects that "throw themselves", you would (at least mentally) need to keep track of said objects, but. as we all know, [usually] particles are non-interactive (non-bodies), mostly used for visual effects and decoration, so they are something like "fire and forget" entities that should not take up "slots" among the "real" body objects. Overall, yeah, you could say it's just [inverted] semantics. I see them more as side effects rather than "real" world entities. |
Yeah I think semantically it definitely makes more sense to have some other "throw" them instead of throwing themselves. Just to be clear about what you're thinking, by throwing others, the thrower's own properties like the position or size won't affect the throwing behavior right, everything is just defined by the angle and force passed to |
Correct. Angle, Force and maybe other parameters like wieght, variation, lifetime, decay, etc. |
This is a proposal to add simple particle emitters for game objects.
When applied to a sprite object, this method would create a particle emitter with all required config options (like widt/height of the bounding emitter area, particle lifetime, speed, gravity, angle, angleVariation, sizeVariation, initial and final particle sizes, wind force/direction, sprite frames to use randomly - or continuously, etc.).
Example:
emitter({
width: 100,
height: 100,
angle: 90,
gravity: 10,
speed: 100,
frames: [0, 1, 4],
size: vec2(4, 4),
lifetime: 2
}
I have no idea how hard it would be to implement for Kaboom, but I think it would be a super addition to the engine/library.
Cheers!
The text was updated successfully, but these errors were encountered: