├── .gitignore ├── LICENSE ├── README.md └── addons └── editorscriptmanager ├── EditorScriptManager.gd ├── icon.png └── plugin.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbMercy/EditorScriptManager/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbMercy/EditorScriptManager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbMercy/EditorScriptManager/HEAD/README.md -------------------------------------------------------------------------------- /addons/editorscriptmanager/EditorScriptManager.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbMercy/EditorScriptManager/HEAD/addons/editorscriptmanager/EditorScriptManager.gd -------------------------------------------------------------------------------- /addons/editorscriptmanager/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbMercy/EditorScriptManager/HEAD/addons/editorscriptmanager/icon.png -------------------------------------------------------------------------------- /addons/editorscriptmanager/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbMercy/EditorScriptManager/HEAD/addons/editorscriptmanager/plugin.cfg --------------------------------------------------------------------------------