We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a1d3f3 commit 1a8f5aaCopy full SHA for 1a8f5aa
1 file changed
dodgedemo/dodgedemo.js
@@ -131,7 +131,7 @@ function makeCross(pos) {
131
shield.y = anchor(shield.y, player.y - player.width / 2 + shield.height / 2 + 4, player.y + player.height / 2 - shield.height / 2 - 4);
132
for (const cross of crosses.values()) {
133
cross.countdown -= time.deltaTime;
134
- if (cross.countdown > 90) {
+ if (cross.countdown > 120) {
135
cross.visible = !Math.floor((cross.countdown / 10) % 2);
136
}
137
else if (cross.countdown > 60) {
0 commit comments