From 72d45b3fb89056f74dbcc8d38852eea25e900aa2 Mon Sep 17 00:00:00 2001 From: Rui Miguel Alonso Date: Thu, 21 Apr 2022 08:45:43 +0200 Subject: [PATCH] Update packages/pinball_components/lib/src/components/spaceship_ramp.dart Co-authored-by: Allison Ryan <77211884+allisonryan0002@users.noreply.github.com> --- .../lib/src/components/spaceship_ramp.dart | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/pinball_components/lib/src/components/spaceship_ramp.dart b/packages/pinball_components/lib/src/components/spaceship_ramp.dart index 7edf0165..3e118da8 100644 --- a/packages/pinball_components/lib/src/components/spaceship_ramp.dart +++ b/packages/pinball_components/lib/src/components/spaceship_ramp.dart @@ -157,22 +157,22 @@ class _SpaceshipRampBackgroundRampSpriteComponent extends SpriteComponent /// Indicates the [SpaceshipRamp]'s arrow dashes current sprite state. enum SpaceshipRampArrowSpriteState { - /// None dash lit up. + /// Arrow with no dashes lit up. inactive, - /// Only 1 dash lit up. + /// Arrow with 1 dash lit up. active1, - /// Only 2 dashes lit up. + /// Arrow with 2 dashes lit up. active2, - /// Only 3 dashes lit up. + /// Arrow with 3 dashes lit up. active3, - /// Only 4 dashes lit up. + /// Arrow with 4 dashes lit up. active4, - /// All arrow dashes lit up. + /// Arrow with all 5 dashes lit up. active5, }