Optimized Docs (#7)

Authored-by: Dennis Ploeger <develop@dieploegers.de>
This commit is contained in:
Dennis Ploeger
2021-06-22 23:06:20 +02:00
committed by GitHub
parent d5a0022b7b
commit 58d880101d
111 changed files with 6362 additions and 801 deletions

View File

@@ -0,0 +1,47 @@
<!-- Auto-generated from JSON by GDScript docs maker. Do not edit this document directly. -->
# ESCCommandRegistry
**Extends:** [Object](../Object)
## Description
A registry of ESC command objects
## Property Descriptions
### registry
```gdscript
var registry: Dictionary
```
The registry of registered commands
## Method Descriptions
### load\_command
```gdscript
func load_command(command_name: String) -> ESCBaseCommand
```
Load a command by its name
#### Parameters
- command_name: Name of command to load
**Returns** The command object
### get\_command
```gdscript
func get_command(command_name: String) -> ESCBaseCommand
```
Retrieve a command from the command registry
#### Parameters
- command_name: The name of the command
**Returns** The command object