project.godot 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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": "Polygon2D",
  11. "class": "Circle",
  12. "language": "GDScript",
  13. "path": "res://Circle.gd"
  14. }, {
  15. "base": "Line2D",
  16. "class": "CircleOutline",
  17. "language": "GDScript",
  18. "path": "res://CircleOutline.gd"
  19. }, {
  20. "base": "Label",
  21. "class": "FontedLabel",
  22. "language": "GDScript",
  23. "path": "res://FontedLabel.gd"
  24. }, {
  25. "base": "ColorRect",
  26. "class": "JamProgressBar",
  27. "language": "GDScript",
  28. "path": "res://JAM_PROGRESS_BAR.gd"
  29. }, {
  30. "base": "ColorRect",
  31. "class": "PingRect",
  32. "language": "GDScript",
  33. "path": "res://PING_RECT.gd"
  34. }, {
  35. "base": "Node2D",
  36. "class": "Planet",
  37. "language": "GDScript",
  38. "path": "res://PlanetNode.gd"
  39. }, {
  40. "base": "ColorRect",
  41. "class": "TimeLeftBar",
  42. "language": "GDScript",
  43. "path": "res://TIME_LEFT_BAR.gd"
  44. } ]
  45. _global_script_class_icons={
  46. "Circle": "",
  47. "CircleOutline": "",
  48. "FontedLabel": "",
  49. "JamProgressBar": "",
  50. "PingRect": "",
  51. "Planet": "",
  52. "TimeLeftBar": ""
  53. }
  54. [application]
  55. config/name="SpacePing"
  56. run/main_scene="res://MAIN.tscn"
  57. config/icon="res://icon.png"
  58. [display]
  59. window/size/resizable=false
  60. [rendering]
  61. quality/driver/driver_name="GLES2"
  62. vram_compression/import_etc=true
  63. vram_compression/import_etc2=false
  64. environment/default_environment="res://default_env.tres"