godot/demos/2d/space_shooter/engine.cfg
Juan Linietsky c845c2a827 added icon
2015-06-11 10:03:33 -03:00

23 lines
287 B
INI

[application]
name="Simple Shooter"
main_scene="res://main_menu.scn"
icon="res://icon.png"
[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)]