Some checks failed
Godot CI / Import + smoke test (push) Failing after 13s
1. stretch/mode: viewport → canvas_items + aspect=keep 3D теперь рендерится в native window resolution (1920×1080), а 2D UI остаётся в 640×360 logical coords с nearest-фильтрацией — гибрид smooth 3D + pixel-art UI. 2. [input] map: добавлены move_forward/back/left/right на WASD + стрелки (physical_keycode для layout-независимости). Дефолтные ui_left/right/up/down в Godot 4 биндятся только на стрелки — поэтому WASD ничего не делал. 3. HUD-подсказка обновлена: «WASD ходить · мышь смотреть · ЛКМ взаимодействие». Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
62 lines
3.5 KiB
Text
62 lines
3.5 KiB
Text
; Engine configuration file.
|
||
; It's best edited using the editor UI and not directly,
|
||
; since the parameters that go here are not all obvious.
|
||
;
|
||
; Format:
|
||
; [section] ; section goes between []
|
||
; param=value ; assign values to parameters
|
||
|
||
config_version=5
|
||
|
||
[application]
|
||
|
||
config/name="Farming Simulator"
|
||
config/description="Подросток-фермер CS/TF2/PUBG-кейсов в стране Р, 2020-2022. Pre-alpha."
|
||
run/main_scene="res://scenes/prologue/act1_room.tscn"
|
||
config/features=PackedStringArray("4.6", "GL Compatibility")
|
||
|
||
[autoload]
|
||
|
||
DialogManager="*res://scenes/components/dialog_ui.tscn"
|
||
|
||
[display]
|
||
|
||
window/size/viewport_width=640
|
||
window/size/viewport_height=360
|
||
window/size/window_width_override=1920
|
||
window/size/window_height_override=1080
|
||
window/stretch/mode="canvas_items"
|
||
window/stretch/aspect="keep"
|
||
|
||
[input]
|
||
|
||
move_forward={
|
||
"deadzone": 0.5,
|
||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":87,"key_label":0,"unicode":119,"location":0,"echo":false,"script":null)
|
||
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194320,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
||
]
|
||
}
|
||
move_back={
|
||
"deadzone": 0.5,
|
||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":83,"key_label":0,"unicode":115,"location":0,"echo":false,"script":null)
|
||
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194322,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
||
]
|
||
}
|
||
move_left={
|
||
"deadzone": 0.5,
|
||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":65,"key_label":0,"unicode":97,"location":0,"echo":false,"script":null)
|
||
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194319,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
||
]
|
||
}
|
||
move_right={
|
||
"deadzone": 0.5,
|
||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":68,"key_label":0,"unicode":100,"location":0,"echo":false,"script":null)
|
||
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194321,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
||
]
|
||
}
|
||
|
||
[rendering]
|
||
|
||
textures/canvas_textures/default_texture_filter=0
|
||
renderer/rendering_method="gl_compatibility"
|
||
renderer/rendering_method.mobile="gl_compatibility"
|