godot-demo-projects/visual_script/visual_pong/project.godot

24 lines
400 B
Plaintext
Raw Normal View History

2017-07-01 12:29:03 +02:00
[application]
icon = "res://icon.png"
main_scene = "pong.tscn"
name = "Visual Pong"
[display]
stretch_2d = true
window/height = 400
window/width = 640
[input]
left_move_down = [ InputEvent(KEY,90) ]
left_move_up = [ InputEvent(KEY,65) ]
right_move_down = [ InputEvent(KEY,16777234) ]
right_move_up = [ InputEvent(KEY,16777232) ]
[rendering]
viewport/default_clear_color = Color( 0, 0, 0, 1 )