We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65160cd commit 1b9e67dCopy full SHA for 1b9e67d
2 files changed
src/constants.ts
@@ -42,6 +42,7 @@ export const PLAYER_VISUALS = {
42
wallSlideDustInterval: 0.01,
43
dashParticleCount: 1,
44
dashParticleInterval: 0.02,
45
+ dashParticleScale: 0.5,
46
dustLifeMinMs: 300,
47
dustLifeMaxMs: 500,
48
dustSpeedMin: 5,
src/view/PlayerView.ts
@@ -420,7 +420,7 @@ export class PlayerView {
420
max: PLAYER_VISUALS.dashParticleLifeMaxMs,
421
},
422
quantity: 0,
423
- scale: 1,
+ scale: PLAYER_VISUALS.dashParticleScale,
424
alpha: { start: 1, end: 0 },
425
tint: COLORS.playerNoDash,
426
gravityY: PLAYER_VISUALS.dashParticleGravityY,
0 commit comments