mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2026-01-27 09:50:10 +01:00
24 lines
400 B
Plaintext
24 lines
400 B
Plaintext
[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 )
|
|
|