├── .gitattributes ├── README.md ├── _doc_python.ini ├── apps └── python │ ├── AccExtHelper │ ├── AccExtHelper.py │ ├── sim_info.py │ ├── stdlib │ │ └── _ctypes.pyd │ ├── stdlib64 │ │ └── _ctypes.pyd │ └── ui │ │ └── ui_app.json │ ├── AccExtMirrors │ ├── AccExtMirrors.py │ ├── _ctypes.pyd │ └── ui │ │ └── ui_app.json │ ├── AccExtRain │ ├── AccExtRain.py │ └── ui │ │ └── ui_app.json │ └── AccExtWeather │ ├── AccExtWeather.py │ ├── settings │ └── settings_defaults.ini │ └── ui │ └── ui_app.json └── content └── gui └── icons ├── Shaders Patch Debug_OFF.png ├── Shaders Patch Debug_ON.png ├── Shaders Patch Mirrors_OFF.png ├── Shaders Patch Mirrors_ON.png ├── Shaders Patch Rain_OFF.png ├── Shaders Patch Rain_ON.png ├── Shaders Patch Weather_OFF.png └── Shaders Patch Weather_ON.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac-custom-shaders-patch/acc-extension-apps/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac-custom-shaders-patch/acc-extension-apps/HEAD/README.md -------------------------------------------------------------------------------- /_doc_python.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac-custom-shaders-patch/acc-extension-apps/HEAD/_doc_python.ini -------------------------------------------------------------------------------- /apps/python/AccExtHelper/AccExtHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac-custom-shaders-patch/acc-extension-apps/HEAD/apps/python/AccExtHelper/AccExtHelper.py -------------------------------------------------------------------------------- /apps/python/AccExtHelper/sim_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac-custom-shaders-patch/acc-extension-apps/HEAD/apps/python/AccExtHelper/sim_info.py -------------------------------------------------------------------------------- /apps/python/AccExtHelper/stdlib/_ctypes.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac-custom-shaders-patch/acc-extension-apps/HEAD/apps/python/AccExtHelper/stdlib/_ctypes.pyd -------------------------------------------------------------------------------- /apps/python/AccExtHelper/stdlib64/_ctypes.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac-custom-shaders-patch/acc-extension-apps/HEAD/apps/python/AccExtHelper/stdlib64/_ctypes.pyd -------------------------------------------------------------------------------- /apps/python/AccExtHelper/ui/ui_app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac-custom-shaders-patch/acc-extension-apps/HEAD/apps/python/AccExtHelper/ui/ui_app.json -------------------------------------------------------------------------------- /apps/python/AccExtMirrors/AccExtMirrors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac-custom-shaders-patch/acc-extension-apps/HEAD/apps/python/AccExtMirrors/AccExtMirrors.py -------------------------------------------------------------------------------- /apps/python/AccExtMirrors/_ctypes.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac-custom-shaders-patch/acc-extension-apps/HEAD/apps/python/AccExtMirrors/_ctypes.pyd -------------------------------------------------------------------------------- /apps/python/AccExtMirrors/ui/ui_app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac-custom-shaders-patch/acc-extension-apps/HEAD/apps/python/AccExtMirrors/ui/ui_app.json -------------------------------------------------------------------------------- /apps/python/AccExtRain/AccExtRain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac-custom-shaders-patch/acc-extension-apps/HEAD/apps/python/AccExtRain/AccExtRain.py -------------------------------------------------------------------------------- /apps/python/AccExtRain/ui/ui_app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac-custom-shaders-patch/acc-extension-apps/HEAD/apps/python/AccExtRain/ui/ui_app.json -------------------------------------------------------------------------------- /apps/python/AccExtWeather/AccExtWeather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac-custom-shaders-patch/acc-extension-apps/HEAD/apps/python/AccExtWeather/AccExtWeather.py -------------------------------------------------------------------------------- /apps/python/AccExtWeather/settings/settings_defaults.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac-custom-shaders-patch/acc-extension-apps/HEAD/apps/python/AccExtWeather/settings/settings_defaults.ini -------------------------------------------------------------------------------- /apps/python/AccExtWeather/ui/ui_app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac-custom-shaders-patch/acc-extension-apps/HEAD/apps/python/AccExtWeather/ui/ui_app.json -------------------------------------------------------------------------------- /content/gui/icons/Shaders Patch Debug_OFF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac-custom-shaders-patch/acc-extension-apps/HEAD/content/gui/icons/Shaders Patch Debug_OFF.png -------------------------------------------------------------------------------- /content/gui/icons/Shaders Patch Debug_ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac-custom-shaders-patch/acc-extension-apps/HEAD/content/gui/icons/Shaders Patch Debug_ON.png -------------------------------------------------------------------------------- /content/gui/icons/Shaders Patch Mirrors_OFF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac-custom-shaders-patch/acc-extension-apps/HEAD/content/gui/icons/Shaders Patch Mirrors_OFF.png -------------------------------------------------------------------------------- /content/gui/icons/Shaders Patch Mirrors_ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac-custom-shaders-patch/acc-extension-apps/HEAD/content/gui/icons/Shaders Patch Mirrors_ON.png -------------------------------------------------------------------------------- /content/gui/icons/Shaders Patch Rain_OFF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac-custom-shaders-patch/acc-extension-apps/HEAD/content/gui/icons/Shaders Patch Rain_OFF.png -------------------------------------------------------------------------------- /content/gui/icons/Shaders Patch Rain_ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac-custom-shaders-patch/acc-extension-apps/HEAD/content/gui/icons/Shaders Patch Rain_ON.png -------------------------------------------------------------------------------- /content/gui/icons/Shaders Patch Weather_OFF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac-custom-shaders-patch/acc-extension-apps/HEAD/content/gui/icons/Shaders Patch Weather_OFF.png -------------------------------------------------------------------------------- /content/gui/icons/Shaders Patch Weather_ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac-custom-shaders-patch/acc-extension-apps/HEAD/content/gui/icons/Shaders Patch Weather_ON.png --------------------------------------------------------------------------------