blob: 9c8dfbfaef1e45427f3f50e446390d018e111532 [file] [log] [blame]
{
"MaxCount": 4000,
"Drawable": {
"Type": "SkCircleDrawable",
"Radius": 3
},
"Code": [
"void effectUpdate(inout Effect effect) {",
" effect.rate = (sin(radians(effect.age * 720)) + 0.7) * 200;",
"}",
"",
"void spawn(inout Particle p) {",
" p.lifetime = 6;",
" float a = radians(rand(p.seed) * 360);",
" float2 ofs = float2(cos(a), sin(a)) * 40;",
" p.pos += ofs;",
" p.vel = ofs;",
" p.scale = 0.5;",
"}",
""
],
"Bindings": []
}