Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/eweninja/godot-plugin-template-gdscript

Godot 4 plugin template in GDScript.
https://github.com/eweninja/godot-plugin-template-gdscript

gdscript godot godot-plugin godotengine template

Last synced: 7 days ago
JSON representation

Godot 4 plugin template in GDScript.

Awesome Lists containing this project

README

        

# godot-plugin-template-gdscript

Simple Godot 4 plugin template in GDScript.

If you want to use C# version of template go to [Godot Plugin Template in C#](https://github.com/eweninja/godot-plugin-template-csharp).

## How to start creating?

1. Create project in Godot 4.
2. Create `res://addons` directory.
3. Open Terminal or CMD and `cd` into addons directory, for example `cd C:\godot-projects\my-project-1`.
4. Clone this repository: `git clone https://github.com/eweninja/godot-plugin-template-gdscript`.
5. Rename directory as you want to.

## Creating plugins

Minimal requirement is to have two files in plugin folder:
- main script, for example `plugin.gd`
- config file `plugin.cfg`

In config file you have to specify the name, description, author, version and base script.
In the plugin scripts you have to add `@tool` keyword.