├── LICENSE.md ├── README.md ├── icons ├── haxe.svg └── haxe.svg.import ├── plugin.cfg ├── scenes ├── about.tscn ├── building.tscn ├── new_script.tscn └── tab.tscn └── scripts ├── Setup.hx ├── building.gd ├── constants.gd ├── editor_property.gd ├── haxe.gd ├── inspector_plugin.gd ├── new_script.gd └── tab.gd /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeGodot/editor-plugin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeGodot/editor-plugin/HEAD/README.md -------------------------------------------------------------------------------- /icons/haxe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeGodot/editor-plugin/HEAD/icons/haxe.svg -------------------------------------------------------------------------------- /icons/haxe.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeGodot/editor-plugin/HEAD/icons/haxe.svg.import -------------------------------------------------------------------------------- /plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeGodot/editor-plugin/HEAD/plugin.cfg -------------------------------------------------------------------------------- /scenes/about.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeGodot/editor-plugin/HEAD/scenes/about.tscn -------------------------------------------------------------------------------- /scenes/building.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeGodot/editor-plugin/HEAD/scenes/building.tscn -------------------------------------------------------------------------------- /scenes/new_script.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeGodot/editor-plugin/HEAD/scenes/new_script.tscn -------------------------------------------------------------------------------- /scenes/tab.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeGodot/editor-plugin/HEAD/scenes/tab.tscn -------------------------------------------------------------------------------- /scripts/Setup.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeGodot/editor-plugin/HEAD/scripts/Setup.hx -------------------------------------------------------------------------------- /scripts/building.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeGodot/editor-plugin/HEAD/scripts/building.gd -------------------------------------------------------------------------------- /scripts/constants.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeGodot/editor-plugin/HEAD/scripts/constants.gd -------------------------------------------------------------------------------- /scripts/editor_property.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeGodot/editor-plugin/HEAD/scripts/editor_property.gd -------------------------------------------------------------------------------- /scripts/haxe.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeGodot/editor-plugin/HEAD/scripts/haxe.gd -------------------------------------------------------------------------------- /scripts/inspector_plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeGodot/editor-plugin/HEAD/scripts/inspector_plugin.gd -------------------------------------------------------------------------------- /scripts/new_script.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeGodot/editor-plugin/HEAD/scripts/new_script.gd -------------------------------------------------------------------------------- /scripts/tab.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeGodot/editor-plugin/HEAD/scripts/tab.gd --------------------------------------------------------------------------------