forked from rDrama/rDrama
1
0
Fork 0

fix stab award again

master
Aevann 2023-10-09 19:00:44 +03:00
parent 7cd7a6c668
commit 47be101f22
2 changed files with 2 additions and 2 deletions

View File

@ -1,3 +1,3 @@
canvas.sketch {
opacity: 0.1;
opacity: 0.2;
}

View File

@ -15,7 +15,7 @@ let blood = Sketch.create({autoclear: false, autopause: false}),
maxDrops = dropCount+1,
Drop = function() {
this.x = random(0,blood.width);
this.radius = random(5,10);
this.radius = random(7,12);
this.y = -this.radius - random(50,100);
this.vy = this.radius/6;
this.r = ~~random(240,255);