skia2/resources/particles/mandrill.json
Brian Osman c81378624f Update all example particle data to new single-code-chunk format
Change-Id: Ic53dc7ecab1b44761fe06e6b528864d24cc5fa58
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/363940
Reviewed-by: Brian Osman <brianosman@google.com>
Commit-Queue: Brian Osman <brianosman@google.com>
2021-02-02 18:07:53 +00:00

36 lines
845 B
JSON

{
"MaxCount": 4000,
"Drawable": {
"Type": "SkCircleDrawable",
"Radius": 3
},
"Code": [
"void effectSpawn(inout Effect effect) {",
" effect.rate = 4000;",
"}",
"",
"void effectUpdate(inout Effect effect) {",
"}",
"",
"void spawn(inout Particle p) {",
" p.lifetime = 1;",
" p.pos = float2(rand(p.seed), rand(p.seed)) * 200;",
" p.vel = float2(rand(p.seed), rand(p.seed)) * 2 - 1;",
" p.vel *= 20;",
" p.scale = mix(0.25, 1, rand(p.seed));",
"}",
"",
"void update(inout Particle p) {",
" p.color = img(p.pos / 200);",
"}",
""
],
"Bindings": [
{
"Type": "SkImageBinding",
"Name": "img",
"ImagePath": "images",
"ImageName": "mandrill_128.png"
}
]
}