| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A high-performance, external rhythm game input visualizer.
RainingKeys is a purely external overlay application that visualizes keyboard inputs as falling bars, similar to the "Rain" mode found in various rhythm game mods. It provides visual feedback on rhythm stability, micro-jitter, and input timing without injecting code into the game process.
Note
This project is a standalone external tool. It is NOT a game mod and does NOT perform DLL injection or memory hooking. It is safe to use with anti-cheat software that permits external overlays.
RainingKeysPython/
├── core/
│ ├── config.py # Default configuration constants
│ ├── gui.py # Configuration Window GUI
│ ├── input_mon.py # Global input listener
│ ├── overlay.py # Main rendering loop and window logic
│ └── settings_manager.py # Handles config loading/saving
├── build.py # Build script for creating standalone executable
├── main.py # Application entry point
└── requirements.txt # Dependencies
git clone https://github.com/your-username/RainingKeysPython.git
cd RainingKeysPythonpip install -r requirements.txtpython main.pySettings are stored in config.ini (automatically created on first run). You can edit this file manually or use the GUI Settings Window.
| Section | Parameter | Description |
|---|---|---|
| Visual | scroll_speed | Falling speed in pixels per second. |
| Visual | bar_color | RGBA color string (e.g., 0,255,255,200). |
| Position | x | Overlay X position (pixels). |
| Position | y | Overlay Y position (pixels). |
| lanes | keys | Comma-separated list of keys. |
| keyviewer | enabled | Show/Hide KeyViewer panel. |
| keyviewer | panel_position | above or below. Affects fall direction. |
| keyviewer | opacity | Opacity of inactive keys (0.0 - 1.0). |
This software is an unofficial community tool. It is not affiliated with, endorsed by, or connected to 7th Beat Games (developers of A Dance of Fire and Ice) or any other game developer. Use responsibly.
Contributions are welcome! We'd love to make this tool better together.
Any contributions you make are greatly appreciated.
This project is inspired by the RainingKeys mod for A Dance of Fire and Ice, originally created by paring-chan.
Also credits to AdofaiTweaks by PizzaLovers007.
MIT License. See LICENSE for details.
| Back | FazBrowse Home | New Git URL |