22 lines
265 B
INI
22 lines
265 B
INI
|
[application]
|
||
|
|
||
|
name="Simple Shooter"
|
||
|
main_scene="res://main_menu.scn"
|
||
|
|
||
|
[autoload]
|
||
|
|
||
|
game_state="res://game_state.gd"
|
||
|
|
||
|
[display]
|
||
|
|
||
|
width=1024
|
||
|
height=600
|
||
|
|
||
|
[input]
|
||
|
|
||
|
move_up=[key(Up)]
|
||
|
move_down=[key(Down)]
|
||
|
move_left=[key(Left)]
|
||
|
move_right=[key(Right)]
|
||
|
shoot=[key(Space)]
|