engine.cfg 402 B

12345678910111213141516171819202122232425262728
  1. [application]
  2. name="Platformer"
  3. main_scene="res://stage.xml"
  4. icon="res://icon.png"
  5. name_es="Plataformero"
  6. [display]
  7. width=800
  8. height=480
  9. stretch_2d=true
  10. [input]
  11. move_left=[key(Left), jbutton(0, 14)]
  12. move_right=[key(Right), jbutton(0, 15)]
  13. jump=[key(Up), jbutton(0, 0)]
  14. shoot=[key(Space), jbutton(0, 2)]
  15. spawn=[key(F1), jbutton(0, 11)]
  16. [physics_2d]
  17. default_gravity=700
  18. [render]
  19. mipmap_policy=1