project.godot 1.4 KB

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