├── .gitattributes ├── .gitignore ├── .idea ├── .gitignore ├── .name ├── VRChatPerformanceViewer.iml ├── encodings.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.md ├── __init__.py ├── blender_manifest.toml └── icons ├── excellent.png ├── good.png ├── medium.png ├── poor.png └── verypoor.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoiyu-dev/VRChatPerformanceViewer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoiyu-dev/VRChatPerformanceViewer/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoiyu-dev/VRChatPerformanceViewer/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | __init__.py -------------------------------------------------------------------------------- /.idea/VRChatPerformanceViewer.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoiyu-dev/VRChatPerformanceViewer/HEAD/.idea/VRChatPerformanceViewer.iml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoiyu-dev/VRChatPerformanceViewer/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoiyu-dev/VRChatPerformanceViewer/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoiyu-dev/VRChatPerformanceViewer/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoiyu-dev/VRChatPerformanceViewer/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoiyu-dev/VRChatPerformanceViewer/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoiyu-dev/VRChatPerformanceViewer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoiyu-dev/VRChatPerformanceViewer/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoiyu-dev/VRChatPerformanceViewer/HEAD/__init__.py -------------------------------------------------------------------------------- /blender_manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoiyu-dev/VRChatPerformanceViewer/HEAD/blender_manifest.toml -------------------------------------------------------------------------------- /icons/excellent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoiyu-dev/VRChatPerformanceViewer/HEAD/icons/excellent.png -------------------------------------------------------------------------------- /icons/good.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoiyu-dev/VRChatPerformanceViewer/HEAD/icons/good.png -------------------------------------------------------------------------------- /icons/medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoiyu-dev/VRChatPerformanceViewer/HEAD/icons/medium.png -------------------------------------------------------------------------------- /icons/poor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoiyu-dev/VRChatPerformanceViewer/HEAD/icons/poor.png -------------------------------------------------------------------------------- /icons/verypoor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoiyu-dev/VRChatPerformanceViewer/HEAD/icons/verypoor.png --------------------------------------------------------------------------------