You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
925 B
36 lines
925 B
{
|
|
"MaxCount": 2000,
|
|
"Drawable": {
|
|
"Type": "SkCircleDrawable",
|
|
"Radius": 1
|
|
},
|
|
"Code": [
|
|
"void effectSpawn(inout Effect effect) {",
|
|
" effect.rate = 1000;",
|
|
"}",
|
|
"",
|
|
"void spawn(inout Particle p) {",
|
|
" p.lifetime = mix(1, 3, rand(p.seed));",
|
|
" float a = radians(mix(250, 290, rand(p.seed)));",
|
|
" float s = mix(10, 30, rand(p.seed));",
|
|
" p.vel.x = cos(a) * s;",
|
|
" p.vel.y = sin(a) * s;",
|
|
" p.pos += text(rand(p.seed)).xy;",
|
|
"}",
|
|
"",
|
|
"void update(inout Particle p) {",
|
|
" float4 startColor = float4(1, 0.196, 0.078, 1);",
|
|
" float4 endColor = float4(1, 0.784, 0.078, 1);",
|
|
" p.color = mix(startColor, endColor, p.age);",
|
|
"}",
|
|
""
|
|
],
|
|
"Bindings": [
|
|
{
|
|
"Type": "SkTextBinding",
|
|
"Name": "text",
|
|
"Text": "SKIA",
|
|
"FontSize": 96
|
|
}
|
|
]
|
|
} |