project.godot 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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": "Ball",
  12. "language": "GDScript",
  13. "path": "res://component/entity/ball/Ball.gd"
  14. }, {
  15. "base": "StaticBody2D",
  16. "class": "Brick",
  17. "language": "GDScript",
  18. "path": "res://component/entity/brick/Brick.gd"
  19. }, {
  20. "base": "Area2D",
  21. "class": "Catcher",
  22. "language": "GDScript",
  23. "path": "res://component/entity/catcher/Catcher.gd"
  24. }, {
  25. "base": "Reference",
  26. "class": "ColorUtil",
  27. "language": "GDScript",
  28. "path": "res://utility/ColorUtil.gd"
  29. }, {
  30. "base": "Panel",
  31. "class": "MessagePanel",
  32. "language": "GDScript",
  33. "path": "res://component/ui/message_panel/MessagePanel.gd"
  34. }, {
  35. "base": "Panel",
  36. "class": "NumberPanel",
  37. "language": "GDScript",
  38. "path": "res://component/ui/number_panel/NumberPanel.gd"
  39. } ]
  40. _global_script_class_icons={
  41. "Ball": "",
  42. "Brick": "",
  43. "Catcher": "",
  44. "ColorUtil": "",
  45. "MessagePanel": "",
  46. "NumberPanel": ""
  47. }
  48. [application]
  49. config/name="Kace"
  50. config/description="The tiny incredible breakout game."
  51. run/main_scene="res://main.tscn"
  52. config/icon="res://icon.png"
  53. [display]
  54. window/size/width=400
  55. window/size/height=400
  56. window/size/resizable=false
  57. window/size/test_width=400
  58. window/size/test_height=400
  59. window/handheld/orientation="portrait"
  60. [layer_names]
  61. 2d_physics/layer_1="balls"
  62. 2d_physics/layer_2="walls"
  63. 2d_physics/layer_3="bricks"
  64. 2d_physics/layer_4="detector"
  65. [rendering]
  66. environment/default_environment="res://default_env.tres"