Install Asset
Install via Godot
To maintain one source of truth, Godot Asset Library is just a mirror of the old asset library so you can download directly on Godot via the integrated asset library browser
Quick Information
A general-purpose debug console full of useful commands suitable for any kind of project.To install simply autoload the console.tscn scene and place it at the top of your load order. Then go to Project > Project Settings > Input Map and add a new action called "debug" and assign it a key. This action is used to open/close the console.
Debug Console
A general-purpose debug console for the Godot Engine.
Features
- Debugging suite full of useful in-game commands
- Usable in any project
- Lightweight and easy to use
- Persistent across all scenes
Overview
I made this debug console to be a tool used in any type of project by incorporating many useful commands. It has commands to change the resolution, window mode, enable/disable vsync, display useful debug information such as frames per second, memory, cursor position, current resolution, current screen, and more. There's a command to change the time scale, as well as reload the current scene. There's a "help" command that displays a popup with all the commands and more information about them.
This scene is autoloaded and persistent across all scenes, therefore, you don't need to instance it into every scene, it already exists within every scene by default. When the debug console is brought up it automatically pauses the game, then when it's exited it automatically unpauses the game for you.
Usage
Copy the addons/Debug Console
folder into your projects directory, Then autoload the console.tscn
scene within the Debug Console folder. This will make it present in every scene within your game. Next you need to create a new InputEventAction
by going to Project>Project Settings>Input Map and create an action called "debug" and assign it a key. Press the "debug" action to bring up the console in-game. Be sure to consult the wiki for more detailed information.
Commands
Below is a list of all available commands that the debug console will accept. It works by typing the prefix followed by a space then enter the value.
- help
- clear
- quit
- shoot
- cr
int,int
- mw
fullscreen, windowed, borderless, bordered
- mt
float
- vsync
- fxaa
- msaa
2, 4, 8, off
- fov
float
- debug
name, desc, fps, stats, draw, reload
License
MIT license.
A general-purpose debug console full of useful commands suitable for any kind of project.
To install simply autoload the console.tscn scene and place it at the top of your load order. Then go to Project > Project Settings > Input Map and add a new action called "debug" and assign it a key. This action is used to open/close the console.
Reviews
Quick Information
A general-purpose debug console full of useful commands suitable for any kind of project.To install simply autoload the console.tscn scene and place it at the top of your load order. Then go to Project > Project Settings > Input Map and add a new action called "debug" and assign it a key. This action is used to open/close the console.