├── .gitignore ├── CHANGELOG.md ├── README.md ├── addons └── zylann.project_stats │ ├── LICENSE.md │ ├── analyzer.gd │ ├── data │ └── .gdignore │ ├── graph.gd │ ├── graph.tscn │ ├── plugin.cfg │ ├── plugin.gd │ ├── window.gd │ └── window.tscn ├── default_env.tres ├── icon.png ├── icon.png.import └── project.godot /.gitignore: -------------------------------------------------------------------------------- 1 | # Godot 2 | .import/ 3 | logs/ 4 | 5 | # Misc 6 | debug.bat 7 | _draft/ 8 | _old/ 9 | *.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_project_statistics/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_project_statistics/HEAD/README.md -------------------------------------------------------------------------------- /addons/zylann.project_stats/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_project_statistics/HEAD/addons/zylann.project_stats/LICENSE.md -------------------------------------------------------------------------------- /addons/zylann.project_stats/analyzer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_project_statistics/HEAD/addons/zylann.project_stats/analyzer.gd -------------------------------------------------------------------------------- /addons/zylann.project_stats/data/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/zylann.project_stats/graph.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_project_statistics/HEAD/addons/zylann.project_stats/graph.gd -------------------------------------------------------------------------------- /addons/zylann.project_stats/graph.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_project_statistics/HEAD/addons/zylann.project_stats/graph.tscn -------------------------------------------------------------------------------- /addons/zylann.project_stats/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_project_statistics/HEAD/addons/zylann.project_stats/plugin.cfg -------------------------------------------------------------------------------- /addons/zylann.project_stats/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_project_statistics/HEAD/addons/zylann.project_stats/plugin.gd -------------------------------------------------------------------------------- /addons/zylann.project_stats/window.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_project_statistics/HEAD/addons/zylann.project_stats/window.gd -------------------------------------------------------------------------------- /addons/zylann.project_stats/window.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_project_statistics/HEAD/addons/zylann.project_stats/window.tscn -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_project_statistics/HEAD/default_env.tres -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_project_statistics/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_project_statistics/HEAD/icon.png.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_project_statistics/HEAD/project.godot --------------------------------------------------------------------------------