project.godot 1.8 KB

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