├── .gitattributes ├── .gitignore ├── LICENSE.MD ├── README.md ├── addons └── GodotTIE │ ├── GodotTIE_icon.png │ ├── GodotTIE_icon.png.import │ ├── GodotTIE_plugin.gd │ ├── plugin.cfg │ └── text_interface_engine.gd ├── default_env.tres ├── demo ├── Cave-Story.ttf ├── demos.tscn └── main.gd ├── icon.png ├── icon.png.flags ├── icon.png.import └── project.godot /.gitattributes: -------------------------------------------------------------------------------- 1 | *.gd linguist-language=GDScript 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/GodotTIE/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/GodotTIE/HEAD/LICENSE.MD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/GodotTIE/HEAD/README.md -------------------------------------------------------------------------------- /addons/GodotTIE/GodotTIE_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/GodotTIE/HEAD/addons/GodotTIE/GodotTIE_icon.png -------------------------------------------------------------------------------- /addons/GodotTIE/GodotTIE_icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/GodotTIE/HEAD/addons/GodotTIE/GodotTIE_icon.png.import -------------------------------------------------------------------------------- /addons/GodotTIE/GodotTIE_plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/GodotTIE/HEAD/addons/GodotTIE/GodotTIE_plugin.gd -------------------------------------------------------------------------------- /addons/GodotTIE/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/GodotTIE/HEAD/addons/GodotTIE/plugin.cfg -------------------------------------------------------------------------------- /addons/GodotTIE/text_interface_engine.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/GodotTIE/HEAD/addons/GodotTIE/text_interface_engine.gd -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/GodotTIE/HEAD/default_env.tres -------------------------------------------------------------------------------- /demo/Cave-Story.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/GodotTIE/HEAD/demo/Cave-Story.ttf -------------------------------------------------------------------------------- /demo/demos.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/GodotTIE/HEAD/demo/demos.tscn -------------------------------------------------------------------------------- /demo/main.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/GodotTIE/HEAD/demo/main.gd -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/GodotTIE/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.flags: -------------------------------------------------------------------------------- 1 | gen_mipmaps=false 2 | -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/GodotTIE/HEAD/icon.png.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/GodotTIE/HEAD/project.godot --------------------------------------------------------------------------------