project.godot 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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": "Path2D",
  11. "class": "MobSpawner",
  12. "language": "GDScript",
  13. "path": "res://component/entity/spawner/MobSpawner.gd"
  14. }, {
  15. "base": "RigidBody2D",
  16. "class": "Octo",
  17. "language": "GDScript",
  18. "path": "res://component/entity/octo/Octo.gd"
  19. }, {
  20. "base": "Area2D",
  21. "class": "Player",
  22. "language": "GDScript",
  23. "path": "res://component/entity/player/Player.gd"
  24. } ]
  25. _global_script_class_icons={
  26. "MobSpawner": "",
  27. "Octo": "",
  28. "Player": ""
  29. }
  30. [application]
  31. config/name="DodgyFox"
  32. run/main_scene="res://run/Main.tscn"
  33. config/icon="res://icon.png"
  34. [display]
  35. window/size/width=480
  36. window/size/height=720
  37. window/size/resizable=false
  38. window/stretch/mode="2d"
  39. window/stretch/aspect="keep"
  40. [rendering]
  41. quality/intended_usage/framebuffer_allocation=0
  42. quality/intended_usage/framebuffer_allocation.mobile=0
  43. environment/default_environment="res://default_env.tres"