Skip to content

Commit 1b9e67d

Browse files
committed
fix: change dash particle scale to 0.5
1 parent 65160cd commit 1b9e67d

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

src/constants.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ export const PLAYER_VISUALS = {
4242
wallSlideDustInterval: 0.01,
4343
dashParticleCount: 1,
4444
dashParticleInterval: 0.02,
45+
dashParticleScale: 0.5,
4546
dustLifeMinMs: 300,
4647
dustLifeMaxMs: 500,
4748
dustSpeedMin: 5,

src/view/PlayerView.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ export class PlayerView {
420420
max: PLAYER_VISUALS.dashParticleLifeMaxMs,
421421
},
422422
quantity: 0,
423-
scale: 1,
423+
scale: PLAYER_VISUALS.dashParticleScale,
424424
alpha: { start: 1, end: 0 },
425425
tint: COLORS.playerNoDash,
426426
gravityY: PLAYER_VISUALS.dashParticleGravityY,

0 commit comments

Comments
 (0)