Document integer scaling functionality and limitation.
This commit is contained in:
parent
bc88dca176
commit
868a26d0ac
1 changed files with 3 additions and 0 deletions
|
@ -822,6 +822,9 @@
|
||||||
</member>
|
</member>
|
||||||
<member name="display/window/stretch/scale_mode" type="String" setter="" getter="" default=""fractional"">
|
<member name="display/window/stretch/scale_mode" type="String" setter="" getter="" default=""fractional"">
|
||||||
The policy to use to determine the final scale factor for 2D elements. This affects how [member display/window/stretch/scale] is applied, in addition to the automatic scale factor determined by [member display/window/stretch/mode].
|
The policy to use to determine the final scale factor for 2D elements. This affects how [member display/window/stretch/scale] is applied, in addition to the automatic scale factor determined by [member display/window/stretch/mode].
|
||||||
|
[b]"fractional"[/b]: The scale factor will not be modified.
|
||||||
|
[b]"integer"[/b]: The scale factor will be floored to an integer value, which means that the screen size will always be an integer multiple of the base viewport size. This provides a crisp pixel art appearance.
|
||||||
|
[b]Note:[/b] When using integer scaling with a stretch mode, resizing the window to be smaller than the base viewport size will clip the contents. Consider preventing that by setting [member Window.min_size] to the same value as the base viewport size defined in [member display/window/size/viewport_width] and [member display/window/size/viewport_height].
|
||||||
</member>
|
</member>
|
||||||
<member name="display/window/subwindows/embed_subwindows" type="bool" setter="" getter="" default="true">
|
<member name="display/window/subwindows/embed_subwindows" type="bool" setter="" getter="" default="true">
|
||||||
If [code]true[/code] subwindows are embedded in the main window.
|
If [code]true[/code] subwindows are embedded in the main window.
|
||||||
|
|
Loading…
Reference in a new issue