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
Developer console. Press ~ to activate it in game and execute commands.Based on jitspoe console(static methods are not supported yet)
Csharp-Console-Godot
original project: Godot Console
example:
using Godot;
public partial class Example : Node
{
public override void _Ready()
{
CommandConsole.AddCommand("print", Print);
CommandConsole.AddCommandDescription("print", "Prints the given text in the console.");
CommandConsole.AddParameterDescription(CommandName: "print", param:"text", description:"The text to print.");
CommandConsole.AddCommand("heloworld", HelloWorld);
CommandConsole.AddCommandDescription("heloworld", "Prints 'Hola Mundo!' in the console.");
}
void Print(string text)
{
GD.Print(text);
}
void HelloWorld()
{
GD.PrintErr("Hola Mundo!");
}
//also you can add the Attribute
[AddCommand("testing"), AddCommandDescription("[color=red]Prints on GD Console[/color]")]
public void testing(string text)
{
GD.Print(text);
}
}
in game run with:
test"testing the example" => settesting the exampleas param value
testtesting the example => settestingtheexampleas params values
test"testing the" example => settesting theexampleas params
command_list command:
print example:
all with a maximum of 16 params.
Developer console.
Press ~ to activate it in game and execute commands.
Based on jitspoe console
(static methods are not supported yet)
Reviews
Quick Information
Developer console. Press ~ to activate it in game and execute commands.Based on jitspoe console(static methods are not supported yet)