https://github.com/usbashka/gdsh
Plugin for adding in-game console to Godot Engine 4 projects
https://github.com/usbashka/gdsh
Last synced: about 1 year ago
JSON representation
Plugin for adding in-game console to Godot Engine 4 projects
- Host: GitHub
- URL: https://github.com/usbashka/gdsh
- Owner: USBashka
- License: unlicense
- Created: 2022-08-17T19:08:25.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-08-11T16:48:37.000Z (almost 2 years ago)
- Last Synced: 2025-02-07T13:29:43.305Z (over 1 year ago)
- Language: GDScript
- Size: 157 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# GDsh [](https://godotengine.org)
GDsh is simple console shell for adding to your game.
It allows you easily create new commands and have a *nice* interface.

## Using
Add commands via `GDsh.add_command(name, function, short_desc, description)` method.
- `name` is command itself
- `function` is associated callable (right now **MUST** have `args` (`Array`) parameter)
- `short_desc` is description showed in commands list (optional)
- `description` is full description that showed when `help ` used (optional)