-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
config: add the plugin release files
- Loading branch information
Showing
5 changed files
with
25 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[plugin] | ||
|
||
name="Ginja String Templating" | ||
description="Ginja is a bridge for the Inja templating engine, loosely inspired by jinja for python. It has an easy and yet powerful template syntax with all variables, loops, conditions, includes, functions, and comments you need, nested and combined as you like. This plugin is a GdExtension, so it comes with some limitations. See the repository for more information: https://github.com/Goutte/godot-addon-ginja/" | ||
author="Goutte" | ||
version="1.0" | ||
script="plugin.gd" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
tool | ||
extends EditorPlugin | ||
|
||
# The GdExtension is automatically loaded, | ||
# and it makes the Ginja object available already. | ||
# Perhaps we'll add some sugar nodes here later? | ||
|
||
func _enter_tree(): | ||
pass | ||
|
||
func _exit_tree(): | ||
pass |