You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
3.5 KiB
76 lines
3.5 KiB
|
3 weeks ago
|
; 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="TemplateOnlineMultiplayer"
|
||
|
|
config/description="This is a foundational template for a 3D multiplayer game, developed in Godot Engine."
|
||
|
|
config/tags=PackedStringArray("3d", "network")
|
||
|
|
run/main_scene="res://level/scenes/level.tscn"
|
||
|
|
config/features=PackedStringArray("4.5", "Forward Plus")
|
||
|
|
config/icon="res://icon.png"
|
||
|
|
|
||
|
|
[autoload]
|
||
|
|
|
||
|
|
Network="*res://level/scripts/network.gd"
|
||
|
|
|
||
|
|
[display]
|
||
|
|
|
||
|
|
window/size/viewport_width=1280
|
||
|
|
window/size/viewport_height=720
|
||
|
|
|
||
|
|
[input]
|
||
|
|
|
||
|
|
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)
|
||
|
|
]
|
||
|
|
}
|
||
|
|
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)
|
||
|
|
]
|
||
|
|
}
|
||
|
|
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)
|
||
|
|
]
|
||
|
|
}
|
||
|
|
move_backward={
|
||
|
|
"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)
|
||
|
|
]
|
||
|
|
}
|
||
|
|
jump={
|
||
|
|
"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":32,"key_label":0,"unicode":32,"location":0,"echo":false,"script":null)
|
||
|
|
]
|
||
|
|
}
|
||
|
|
shift={
|
||
|
|
"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":4194325,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
||
|
|
]
|
||
|
|
}
|
||
|
|
quit={
|
||
|
|
"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":4194305,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
||
|
|
]
|
||
|
|
}
|
||
|
|
toggle_chat={
|
||
|
|
"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":4194326,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
||
|
|
]
|
||
|
|
}
|
||
|
|
|
||
|
|
[layer_names]
|
||
|
|
|
||
|
|
3d_physics/layer_1="player"
|
||
|
|
3d_physics/layer_2="world"
|