Public repository for MUR pre alpha
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

206 lines
8.5 KiB

  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": "Spatial",
  11. "class": "BaseInventory",
  12. "language": "GDScript",
  13. "path": "res://scripts/player/base_inventory.gd"
  14. }, {
  15. "base": "Spatial",
  16. "class": "BotPlayer",
  17. "language": "GDScript",
  18. "path": "res://scripts/player/bot_controls.gd"
  19. }, {
  20. "base": "Spatial",
  21. "class": "Game",
  22. "language": "GDScript",
  23. "path": "res://scripts/game/game.gd"
  24. }, {
  25. "base": "Spatial",
  26. "class": "GameServer",
  27. "language": "GDScript",
  28. "path": "res://scripts/networking/game_server.gd"
  29. }, {
  30. "base": "Spatial",
  31. "class": "GameServerRequests",
  32. "language": "GDScript",
  33. "path": "res://scripts/networking/game_server_requests.gd"
  34. }, {
  35. "base": "Node",
  36. "class": "Player",
  37. "language": "GDScript",
  38. "path": "res://scripts/player/player.gd"
  39. }, {
  40. "base": "Spatial",
  41. "class": "Preview",
  42. "language": "GDScript",
  43. "path": "res://scripts/player/inventory_preview.gd"
  44. }, {
  45. "base": "MeshInstance",
  46. "class": "Road",
  47. "language": "GDScript",
  48. "path": "res://scripts/road/road.gd"
  49. }, {
  50. "base": "Spatial",
  51. "class": "Route",
  52. "language": "GDScript",
  53. "path": "res://scripts/game/route.gd"
  54. }, {
  55. "base": "Node",
  56. "class": "TracksFactory",
  57. "language": "GDScript",
  58. "path": "res://scripts/road/roads_factory.gd"
  59. } ]
  60. _global_script_class_icons={
  61. "BaseInventory": "",
  62. "BotPlayer": "",
  63. "Game": "",
  64. "GameServer": "",
  65. "GameServerRequests": "",
  66. "Player": "",
  67. "Preview": "",
  68. "Road": "",
  69. "Route": "",
  70. "TracksFactory": ""
  71. }
  72. [application]
  73. config/name="MUR_pre_alpha"
  74. run/main_scene="res://scenes/menus/MainMenu.tscn"
  75. boot_splash/fullsize=false
  76. config/icon="res://icon.png"
  77. [autoload]
  78. gamestate="*res://scripts/game/gamestate.gd"
  79. client="*res://scripts/networking/client.gd"
  80. server="*res://scripts/networking/server.gd"
  81. game_server="*res://scripts/networking/game_server.gd"
  82. roads_factory="*res://scripts/road/roads_factory.gd"
  83. config="*res://scripts/game/config.gd"
  84. config_apply="*res://scripts/game/config_apply.gd"
  85. util="*res://scripts/util.gd"
  86. [display]
  87. window/size/width=1920
  88. window/size/height=1080
  89. window/size/resizable=false
  90. window/stretch/mode="2d"
  91. window/stretch/aspect="expand"
  92. [input]
  93. ui_cancel={
  94. "deadzone": 0.5,
  95. "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777217,"unicode":0,"echo":false,"script":null)
  96. , Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":11,"pressure":0.0,"pressed":false,"script":null)
  97. ]
  98. }
  99. controls_thrust={
  100. "deadzone": 0.5,
  101. "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777232,"unicode":0,"echo":false,"script":null)
  102. , Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":0,"pressure":0.0,"pressed":false,"script":null)
  103. ]
  104. }
  105. controls_break={
  106. "deadzone": 0.5,
  107. "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777234,"unicode":0,"echo":false,"script":null)
  108. , Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":1,"pressure":0.0,"pressed":false,"script":null)
  109. ]
  110. }
  111. controls_add_road={
  112. "deadzone": 0.5,
  113. "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":32,"unicode":0,"echo":false,"script":null)
  114. , Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":4,"pressure":0.0,"pressed":false,"script":null)
  115. ]
  116. }
  117. controls_next_road_type={
  118. "deadzone": 0.5,
  119. "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":68,"unicode":0,"echo":false,"script":null)
  120. , Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":15,"pressure":0.0,"pressed":false,"script":null)
  121. ]
  122. }
  123. controls_prev_road_type={
  124. "deadzone": 0.5,
  125. "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":65,"unicode":0,"echo":false,"script":null)
  126. , Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":14,"pressure":0.0,"pressed":false,"script":null)
  127. ]
  128. }
  129. controls_next_road_variant={
  130. "deadzone": 0.5,
  131. "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":87,"unicode":0,"echo":false,"script":null)
  132. , Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":12,"pressure":0.0,"pressed":false,"script":null)
  133. ]
  134. }
  135. controls_prev_road_variant={
  136. "deadzone": 0.5,
  137. "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":83,"unicode":0,"echo":false,"script":null)
  138. , Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":13,"pressure":0.0,"pressed":false,"script":null)
  139. ]
  140. }
  141. controls_reset={
  142. "deadzone": 0.5,
  143. "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":69,"unicode":0,"echo":false,"script":null)
  144. , Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":3,"pressure":0.0,"pressed":false,"script":null)
  145. ]
  146. }
  147. debug_camera_1={
  148. "deadzone": 0.5,
  149. "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":49,"unicode":0,"echo":false,"script":null)
  150. ]
  151. }
  152. debug_camera_2={
  153. "deadzone": 0.5,
  154. "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":50,"unicode":0,"echo":false,"script":null)
  155. ]
  156. }
  157. debug_camera_3={
  158. "deadzone": 0.5,
  159. "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":51,"unicode":0,"echo":false,"script":null)
  160. ]
  161. }
  162. debug_camera_4={
  163. "deadzone": 0.5,
  164. "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":52,"unicode":0,"echo":false,"script":null)
  165. ]
  166. }
  167. controls_menu={
  168. "deadzone": 0.5,
  169. "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777217,"unicode":0,"echo":false,"script":null)
  170. , Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":11,"pressure":0.0,"pressed":false,"script":null)
  171. ]
  172. }
  173. controls_capture={
  174. "deadzone": 0.5,
  175. "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":80,"unicode":0,"echo":false,"script":null)
  176. , Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":10,"pressure":0.0,"pressed":false,"script":null)
  177. ]
  178. }
  179. [layer_names]
  180. 3d_physics/layer_1="player_1"
  181. 3d_physics/layer_2="player_2"
  182. 3d_physics/layer_3="player_3"
  183. 3d_physics/layer_4="player_4"
  184. 3d_physics/layer_5="preview"
  185. [locale]
  186. translations=PoolStringArray( "res://resources/ui/i18n.csv", "res://resources/ui/i18n.en.translation", "res://resources/ui/i18n.de.translation" )
  187. locale_filter=[ 0, [ ] ]
  188. [rendering]
  189. threads/thread_model=2
  190. environment/default_environment="res://default_env.tres"