1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-01-18 17:19:50 +00:00

Changed default and min window sizes

The new default window size is 1280x720, and the new minimum window size is 1024x576.
This commit is contained in:
OverloadedOrama 2020-04-05 00:45:19 +03:00
parent 3ca1d00b98
commit 4bfe199cf0
4 changed files with 54 additions and 49 deletions

View file

@ -32,6 +32,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Visual change, added border outlines to all window dialogs.
- Animation now loops by default.
- Onion skinning settings have been moved to a popup window, and 2 new buttons were added. One that toggles onion skinning, and one that opens the settings window.
- The default window size is now 1280x720, and the minimum window size is 1024x576.
- The splash screen is no longer purple, it now gets affected by the chosen theme.
### Fixed

File diff suppressed because one or more lines are too long

View file

@ -15,7 +15,7 @@ func _ready() -> void:
get_tree().set_auto_accept_quit(false)
# Set a minimum window size to prevent UI elements from collapsing on each other.
# This property is only available in 3.2alpha or later, so use `set()` to fail gracefully if it doesn't exist.
OS.set("min_window_size", Vector2(1152, 648))
OS.set("min_window_size", Vector2(1024, 576))
# `TranslationServer.get_loaded_locales()` was added in 3.2beta and in 3.1.2
# The `has_method()` check and the `else` branch can be removed once 3.2 is released.

View file

@ -67,8 +67,8 @@ gdscript/warnings/return_value_discarded=false
[display]
window/size/width=1152
window/size/height=648
window/size/width=1280
window/size/height=720
[importer_defaults]