From 4ce5f5f2de3d45c5f6062bdb0fce2a67bb1b25fa Mon Sep 17 00:00:00 2001 From: Michael Mainguy Date: Mon, 1 Dec 2025 10:54:09 -0600 Subject: [PATCH] updated scoreboard. --- src/ui/hud/scoreboard.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui/hud/scoreboard.ts b/src/ui/hud/scoreboard.ts index 90f3ba7..236ae07 100644 --- a/src/ui/hud/scoreboard.ts +++ b/src/ui/hud/scoreboard.ts @@ -191,13 +191,13 @@ export class Scoreboard { const _afterRender = scene.onAfterRenderObservable.add(() => { if (i++ % 10 !== 0) return; - scoreText.text = `Score: ${this.calculateScore()}`; + scoreText.text = `Destroyed: ${this.calculateScore()}`; remainingText.text = `Remaining: ${this._remaining}`; // Update velocity from ship if available if (this._ship && this._ship.velocity) { const velocityMagnitude = this._ship.velocity.length(); - velocityText.text = `Velocity: ${velocityMagnitude.toFixed(1)} m/s`; + velocityText.text = `Velocity: ${velocityMagnitude.toFixed(1)} km/hr`; } else { velocityText.text = `Velocity: 0.0 m/s`; }