mirror of
https://github.com/Relintai/material-maker.git
synced 2024-11-13 06:27:18 +01:00
Merge branch 'export_plugin' into add-basic-hidpi-support
This commit is contained in:
commit
ab9c5ddac6
@ -13,9 +13,11 @@ func get_type_name():
|
||||
return "Switch"
|
||||
|
||||
func get_parameter_defs():
|
||||
return [ { name="outputs", label="Outputs", type="float", min=1, max=5, step=1, default=2 },
|
||||
return [
|
||||
{ name="outputs", label="Outputs", type="float", min=1, max=5, step=1, default=2 },
|
||||
{ name="choices", label="Choices", type="float", min=2, max=5, step=1, default=2 },
|
||||
{ name="source", label="Source", type="float", min=0, max=1, step=1, default=0 } ]
|
||||
{ name="source", label="Source", type="float", min=0, max=1, step=1, default=0 },
|
||||
]
|
||||
|
||||
func get_input_defs():
|
||||
var rv : Array = []
|
||||
|
@ -46,6 +46,10 @@ func _ready():
|
||||
if OS.get_screen_dpi() >= 192 and OS.get_screen_size().x >= 2048:
|
||||
get_tree().set_screen_stretch(SceneTree.STRETCH_MODE_DISABLED, SceneTree.STRETCH_ASPECT_IGNORE, Vector2(), 2)
|
||||
|
||||
# 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(1024, 600))
|
||||
|
||||
if !Engine.editor_hint:
|
||||
OS.set_window_title(ProjectSettings.get_setting("application/config/name")+" v"+ProjectSettings.get_setting("application/config/release"))
|
||||
load_recents()
|
||||
|
Loading…
Reference in New Issue
Block a user