User Instructions for Colorfall Frenzy

Game Concept

Colorfall Frenzy is a fast-paced, colorful arcade game that tests your reflexes and timing. Your goal is to catch falling objects with a paddle that changes color automatically, matching the object’s color to score points and stay alive. Correct matches reward you with points and health, while mistakes or missed matches cost you health. Aim to beat your high score by surviving as long as possible.

  • Objective: Catch objects when their color (red, blue, or green) matches the paddle’s color to score points and maintain health. Survive to achieve the highest score possible, saved across sessions.
  •  A dynamic, colorful dash where timing and color coordination create a thrilling experience, enhanced by sparkly effects, smoky mistakes, and catchy music.

How to Play

  1. Starting the Game:
    • When you launch Color Match Dash, you’ll see the Start Screen with a colorful background fading between red, blue, and green, setting the vibe.
    • Your High Score is displayed (e.g., “High Score: 0” for first-time players).
    • Click the Start button to begin the game.
  2. Gameplay:
    • Paddle: You control a paddle at the bottom of the screen using your mouse (move left/right). The paddle automatically changes color (red, blue, green) every ~15 seconds, flashing to signal the switch.
    • Falling Objects: Colored objects (red, blue, green) fall from the top of the screen (y = 8) at a steady pace.
    • Catching Objects:
      • Correct Catch: Move the paddle to catch an object when its color matches the paddle’s color (e.g., blue paddle catches blue object).
        • Reward: +10 points, +1 health (up to 3 max), a sparkly burst effect, and a cheerful “ping” sound.
        • Points add to your score, and beating your high score updates it instantly.
      • Incorrect Catch: Catching an object with a mismatched color (e.g., blue paddle catches red object).
        • Penalty: -1 health, a smoky puff effect, and a sharp “buzz” sound.
    • Health System:
      • You start with 3 health points (max 3).
      • Losing health (incorrect catch or missing a correct-colored object) reduces your health by 1.
      • Gain +1 health with correct catches if below max.
    • Missing Objects:
      • If an object falls past the paddle (y < -6):
        • Correct Color Miss: If the object matches the paddle’s color, you lose 1 health and hear a “thud” sound (no particle effect).
        • Incorrect Color Miss: No penalty (safe to miss).
    • Score and High Score:
      • Score increases by 10 per correct catch, displayed as “Score: X”.
      • If your score exceeds your high score, it updates and saves automatically.
      • Health is shown as “Health: X” during play.
  3. Game Over:
    • When health reaches 0 (after 3 mistakes or misses), the game ends.
    •  Screen appears, showing your final score and the current high score (e.g., “High Score: 20”).
    • Game music shifts to a distinct game-over tune.
  4. Restarting:
    • On the Game Over Screen, click the Restart button to return to the Start Screen.
    • The start screen redisplays your high score, which persists across sessions.
    • Click Start to play again, with score reset to 0 and health reset to 3.
  5. Tips for Success:
    • Watch the Paddle: Since the paddle changes color automatically (~15s), keep an eye on its color to time your catches.
    • Prioritize Correct Catches: Catching matching colors boosts score and health, keeping you in the game longer.
    • Avoid Mistakes: Mismatched catches cost health, so let non-matching objects pass if you’re low on health.
    • Aim High: Try to beat your high score each game—it’s saved even after closing the game!
    • Feel the Feedback: Sparkly bursts and pings celebrate correct catches, while smoky puffs and buzzes signal mistakes, helping you stay in rhythm.

Controls

  • Mouse: Move the paddle left or right by moving your mouse horizontally.
  • No Keyboard: The paddle’s color changes automatically—no need to press keys like Spacebar.
  • Click:
    • Start button on Start Screen to begin.
    • Restart button on Game Over Screen to try again.

Visual and Audio Cues

  • Start Screen: Colorful fading (red, blue, green) with upbeat start_music sets the mood.
  • Gameplay:
    • Correct Catch: Bright, colored burst (matches object) + “ping” sound.
    • Incorrect Catch: Smoky, colored puff + “buzz” sound.
    • Correct Miss: “Thud” sound (no visual).
    • Background gameplay_music keeps energy high.
  • Game Over: gameover_music signals the end, with high score displayed.
  • UI: Score (“Score: X”), health (“Health: X”), and high score (“High Score: X”) are clear and updated live.

Goal

  • Survive as long as possible by catching matching colors to rack up points.
  • Beat your High Score, which saves your best performance across games.
  • Enjoy the satisfying visuals (bursts, puffs) and sounds (pings, buzzes) as you dash through the colorful challenge!

Implementation Notes

These instructions are designed for players and could be presented:

  • In-Game:
    • Add a How to Play button on StartPanel: csharp

      // In GameManager.cs public GameObject howToPlayPanel; public void ShowHowToPlay() {     howToPlayPanel.SetActive(true);     Time.timeScale = 0; } public void HideHowToPlay() {     howToPlayPanel.SetActive(false);     Time.timeScale = 0; // Stays paused until Start }
      • Create Canvas/HowToPlayPanel:
        • UI > Text (or TMP_Text): Paste above instructions (shortened).
        • UI > Button: “Back”, calls HideHowToPlay().
        • StartPanel > UI > Button: “How to Play”, calls ShowHowToPlay().
    • Show on first launch: csharp

      // In GameManager.Start if (!PlayerPrefs.HasKey("FirstPlay")) {     ShowHowToPlay();     PlayerPrefs.SetInt("FirstPlay", 1); }
  • External:
    • Include in a README.txt or game webpage.
    • Format for Steam/itch.io description: markdown

      ## Color Match Dash **Concept**: Catch falling objects by matching their color to your paddle in a vibrant, reflex-testing arcade game!  **How to Play**: - **Move**: Slide your mouse to control the paddle. - **Match Colors**: Catch objects (red, blue, green) when they match the paddle’s auto-changing color. - **Score**: +10 points and +1 health for correct catches. Beat your high score! - **Survive**: Avoid mismatches or missing correct colors (-1 health). Game over at 0 health. - **Restart**: Try again to top your high score, saved forever!  **Cues**: - Correct: Sparkly burst + ping sound. - Incorrect: Smoky puff + buzz. - Music and fading colors keep it lively!  **Goal**: Survive, score, and conquer your high score in this colorful dash!
  • Short Version (for in-game UI): text

    Color Match Dash - Move paddle with mouse to catch falling objects. - Match paddle’s color (auto-changes) to object’s color. - Correct: +10 points, +1 health, sparkly burst! - Incorrect or miss: -1 health, smoky puff or thud. - Survive to beat your High Score (saved!). - Game Over at 0 health. Restart to try again!

Integration with Color Match Dash

  • Start Panel:
    • UI fading, start_music, “High Score: X”.
    • Add “How to Play” button with short instructions.
  • Gameplay:
    • Particles (burst, puff), SFX (ping, buzz, thud), high score, health/score align with instructions.
    • Clear feedback (visuals, audio) helps players learn without reading.
  • Game Over:
    • gameover_music, “High Score: X” reinforces goal.
  • Flow:
    • Instructions guide new players, while feedback teaches through play.
    • High score persists, motivating replays.

Checklist

  • Instructions:
    • Cover concept, gameplay, controls, cues, goal.
    • Clear, concise, engaging.
  • Game:
    • Correct catch: Burst, correct.wav, +10 points, +1 health.
    • Incorrect catch: Puff, incorrect.wav, -1 health.
    • Ground miss: ground_miss.wav (if correct), no particle.
    • High score: Saves, displays on StartPanel, GameOverPanel.
    • UI fading, music, paddle, spawns intact.
  • Optional:
    • Add “How to Play” panel or external doc.

Expected Outcome

  • Players Understand:
    • Move paddle with mouse, match colors, score points.
    • Correct catches reward, mistakes penalize.
    • Beat high score, survive with health.
  • Game:
    • Particles, SFX, high score, UI fading work as described.
    • Instructions match experience (e.g., “sparkly burst” = correct particle).
  • Engagement:
    • Clear rules + vibrant feedback = fun, accessible game.

If Feedback Needed

  • Want to tweak instructions?
    • Shorter/longer?
    • Add visuals (screenshots)?
    • Specific tone (e.g., casual, pro)?
  • In-game panel or external doc?
  • Test instructions with someone?







The instructions should get players hyped to dash through colors! Want to add a “How to Play” panel, polish particles/SFX further, or try something new like a pause menu or start panel visuals? Maybe health icons or faster spawns? What’s next for "Color Match Dash"? It’s a total gem now!

Updated 8 days ago
Published 14 days ago
StatusReleased
PlatformsHTML5
AuthorMauroDot
Made withUnity

Leave a comment

Log in with itch.io to leave a comment.