├── .editorconfig ├── .gdignore └── addons └── const_generator ├── LICENSE ├── const_generator.gd └── plugin.cfg /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | -------------------------------------------------------------------------------- /.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/const_generator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/game-gems/godot-const-generator/HEAD/addons/const_generator/LICENSE -------------------------------------------------------------------------------- /addons/const_generator/const_generator.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/game-gems/godot-const-generator/HEAD/addons/const_generator/const_generator.gd -------------------------------------------------------------------------------- /addons/const_generator/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/game-gems/godot-const-generator/HEAD/addons/const_generator/plugin.cfg --------------------------------------------------------------------------------