project.godot 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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": "Sprite",
  26. "class": "BrickMainSprite",
  27. "language": "GDScript",
  28. "path": "res://component/entity/brick/BrickMainSprite.gd"
  29. }, {
  30. "base": "Area2D",
  31. "class": "Catcher",
  32. "language": "GDScript",
  33. "path": "res://component/entity/catcher/Catcher.gd"
  34. }, {
  35. "base": "Reference",
  36. "class": "ColorUtil",
  37. "language": "GDScript",
  38. "path": "res://utility/ColorUtil.gd"
  39. }, {
  40. "base": "RayCast2D",
  41. "class": "DeadLine",
  42. "language": "GDScript",
  43. "path": "res://component/entity/death/DeadLine.gd"
  44. }, {
  45. "base": "Node2D",
  46. "class": "Grid",
  47. "language": "GDScript",
  48. "path": "res://component/entity/brick/Grid.gd"
  49. }, {
  50. "base": "Node2D",
  51. "class": "Launcher",
  52. "language": "GDScript",
  53. "path": "res://component/entity/launcher/Launcher.gd"
  54. }, {
  55. "base": "Panel",
  56. "class": "MessagePanel",
  57. "language": "GDScript",
  58. "path": "res://component/ui/message_panel/MessagePanel.gd"
  59. }, {
  60. "base": "Panel",
  61. "class": "NumberPanel",
  62. "language": "GDScript",
  63. "path": "res://component/ui/number_panel/NumberPanel.gd"
  64. }, {
  65. "base": "RayCast2D",
  66. "class": "TargetLine",
  67. "language": "GDScript",
  68. "path": "res://component/entity/launcher/TargetLine.gd"
  69. }, {
  70. "base": "Control",
  71. "class": "UI",
  72. "language": "GDScript",
  73. "path": "res://component/ui/UI.gd"
  74. } ]
  75. _global_script_class_icons={
  76. "Ball": "",
  77. "Brick": "",
  78. "BrickLifeDisplay": "",
  79. "BrickMainSprite": "",
  80. "Catcher": "",
  81. "ColorUtil": "",
  82. "DeadLine": "",
  83. "Grid": "",
  84. "Launcher": "",
  85. "MessagePanel": "",
  86. "NumberPanel": "",
  87. "TargetLine": "",
  88. "UI": ""
  89. }
  90. [application]
  91. config/name="Kace"
  92. config/description="The tiny incredible breakout game."
  93. run/main_scene="res://main.tscn"
  94. config/icon="res://icon.png"
  95. [display]
  96. window/size/width=400
  97. window/size/height=400
  98. window/size/resizable=false
  99. window/size/test_width=400
  100. window/size/test_height=400
  101. window/handheld/orientation="portrait"
  102. [layer_names]
  103. 2d_physics/layer_1="balls"
  104. 2d_physics/layer_2="walls"
  105. 2d_physics/layer_3="bricks"
  106. 2d_physics/layer_4="detector"
  107. [rendering]
  108. environment/default_environment="res://default_env.tres"