project.godot 995 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. ; Engine configuration file.
  2. ; It's best edited using the editor UI and not directly,
  3. ; since the parameters that go here are not all obvious.
  4. ;
  5. ; Format:
  6. ; [section] ; section goes between []
  7. ; param=value ; assign values to parameters
  8. config_version=4
  9. _global_script_classes=[ {
  10. "base": "RigidBody2D",
  11. "class": "Enemy",
  12. "language": "GDScript",
  13. "path": "res://component/entity/enemy/Enemy.gd"
  14. }, {
  15. "base": "Area2D",
  16. "class": "Player",
  17. "language": "GDScript",
  18. "path": "res://component/entity/player/Player.gd"
  19. } ]
  20. _global_script_class_icons={
  21. "Enemy": "",
  22. "Player": ""
  23. }
  24. [application]
  25. config/name="DodgyFox"
  26. run/main_scene="res://run/Main.tscn"
  27. config/icon="res://icon.png"
  28. [display]
  29. window/size/width=480
  30. window/size/height=720
  31. window/size/resizable=false
  32. window/stretch/mode="2d"
  33. window/stretch/aspect="keep"
  34. [rendering]
  35. quality/intended_usage/framebuffer_allocation=0
  36. quality/intended_usage/framebuffer_allocation.mobile=0
  37. environment/default_environment="res://default_env.tres"