βοΈDebug Game UI
Provides Debug Game UI with cheat buttons to easy test game
How to use
Replace UI_Debugger.prefab in "_Loader" scene. If you need disable Debug Game UI -> remove or disable UI_Debugger in _Loader.
Nearly visible transparent button in bottom right corner will toggle Debug Game UI window.

When you click button, you will see this:

UI button will hide game UI, but interactions still will be
Cash button adds currency to player (default value 5000)
Time scale changes by arrows
Built-in features
Time speed control (TimeSpeedChangeCheat.cs)
Add currency (CashCheatButton.cs)
Toggle game UI on/off (Inside UiDebugger.cs)
Toggle game UI on/off button is specific.
If you want to change it's position -> move UI and ToggleUI_invisibleBack objects in prefab simultaniously. UI object is for button position visibility and invisible for button itself.
How add new features
Open UI_Debugger.prefab. All features are located in DebugContent object:

Add new button or what you need under DebugContent object in prefab and attach your custom script on added object. You can see CashCheatButton.cs for reference.
Last updated