├── .gitignore ├── LICENSE.md ├── README.md ├── addons └── ResolutionManager │ ├── BaseResWindow.gd │ ├── BaseResWindow.tscn │ ├── CustomResWindow.gd │ ├── CustomResWindow.tscn │ ├── GUI.theme │ ├── ResolutionButton.gd │ ├── ResolutionButton.tscn │ ├── icons │ ├── iconfinder_desktop_3688496.png │ └── iconfinder_letter_X_red_1553096.png │ ├── lists │ ├── list_android.txt │ ├── list_basic.txt │ ├── list_custom.txt │ ├── list_ipad.txt │ ├── list_iphone.txt │ ├── list_large.txt │ └── list_mostused.txt │ ├── plugin.cfg │ ├── plugin.gd │ └── stretch_settings_tooltip.json ├── default_env.tres ├── godot.png ├── icon.png ├── project.godot ├── screenshots ├── 1.png ├── 2.png ├── 3.png ├── 4.png └── 5.png └── test.tscn /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/README.md -------------------------------------------------------------------------------- /addons/ResolutionManager/BaseResWindow.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/addons/ResolutionManager/BaseResWindow.gd -------------------------------------------------------------------------------- /addons/ResolutionManager/BaseResWindow.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/addons/ResolutionManager/BaseResWindow.tscn -------------------------------------------------------------------------------- /addons/ResolutionManager/CustomResWindow.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/addons/ResolutionManager/CustomResWindow.gd -------------------------------------------------------------------------------- /addons/ResolutionManager/CustomResWindow.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/addons/ResolutionManager/CustomResWindow.tscn -------------------------------------------------------------------------------- /addons/ResolutionManager/GUI.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/addons/ResolutionManager/GUI.theme -------------------------------------------------------------------------------- /addons/ResolutionManager/ResolutionButton.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/addons/ResolutionManager/ResolutionButton.gd -------------------------------------------------------------------------------- /addons/ResolutionManager/ResolutionButton.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/addons/ResolutionManager/ResolutionButton.tscn -------------------------------------------------------------------------------- /addons/ResolutionManager/icons/iconfinder_desktop_3688496.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/addons/ResolutionManager/icons/iconfinder_desktop_3688496.png -------------------------------------------------------------------------------- /addons/ResolutionManager/icons/iconfinder_letter_X_red_1553096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/addons/ResolutionManager/icons/iconfinder_letter_X_red_1553096.png -------------------------------------------------------------------------------- /addons/ResolutionManager/lists/list_android.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/addons/ResolutionManager/lists/list_android.txt -------------------------------------------------------------------------------- /addons/ResolutionManager/lists/list_basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/addons/ResolutionManager/lists/list_basic.txt -------------------------------------------------------------------------------- /addons/ResolutionManager/lists/list_custom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/addons/ResolutionManager/lists/list_custom.txt -------------------------------------------------------------------------------- /addons/ResolutionManager/lists/list_ipad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/addons/ResolutionManager/lists/list_ipad.txt -------------------------------------------------------------------------------- /addons/ResolutionManager/lists/list_iphone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/addons/ResolutionManager/lists/list_iphone.txt -------------------------------------------------------------------------------- /addons/ResolutionManager/lists/list_large.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/addons/ResolutionManager/lists/list_large.txt -------------------------------------------------------------------------------- /addons/ResolutionManager/lists/list_mostused.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/addons/ResolutionManager/lists/list_mostused.txt -------------------------------------------------------------------------------- /addons/ResolutionManager/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/addons/ResolutionManager/plugin.cfg -------------------------------------------------------------------------------- /addons/ResolutionManager/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/addons/ResolutionManager/plugin.gd -------------------------------------------------------------------------------- /addons/ResolutionManager/stretch_settings_tooltip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/addons/ResolutionManager/stretch_settings_tooltip.json -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/default_env.tres -------------------------------------------------------------------------------- /godot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/godot.png -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/icon.png -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/project.godot -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/screenshots/3.png -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/screenshots/4.png -------------------------------------------------------------------------------- /screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/screenshots/5.png -------------------------------------------------------------------------------- /test.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGKernel/ResolutionManagerPlugin/HEAD/test.tscn --------------------------------------------------------------------------------