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.
 
 

161 lines
4.6 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": "Node",
  11. "class": "BaseLevel",
  12. "language": "GDScript",
  13. "path": "res://jrpg/scripts/levels/base_level.gd"
  14. }, {
  15. "base": "Node",
  16. "class": "BasisInteraction",
  17. "language": "GDScript",
  18. "path": "res://jrpg/scripts/entities/components/interactions/basis_interaction.gd"
  19. }, {
  20. "base": "Resource",
  21. "class": "CharacterData",
  22. "language": "GDScript",
  23. "path": "res://jrpg/scripts/entities/data/character_data.gd"
  24. }, {
  25. "base": "VBoxContainer",
  26. "class": "ChoicesBox",
  27. "language": "GDScript",
  28. "path": "res://jrpg/scripts/ui/choices_box.gd"
  29. }, {
  30. "base": "KinematicBody",
  31. "class": "Player",
  32. "language": "GDScript",
  33. "path": "res://jrpg/scripts/entities/player.gd"
  34. }, {
  35. "base": "Object",
  36. "class": "PlayerInfos",
  37. "language": "GDScript",
  38. "path": "res://jrpg/scripts/entities/model/player_infos.gd"
  39. }, {
  40. "base": "Label",
  41. "class": "SpeechText",
  42. "language": "GDScript",
  43. "path": "res://jrpg/scripts/ui/speech_text.gd"
  44. }, {
  45. "base": "BasisInteraction",
  46. "class": "TalkInteraction",
  47. "language": "GDScript",
  48. "path": "res://jrpg/scripts/entities/components/interactions/talk_interaction.gd"
  49. }, {
  50. "base": "BaseLevel",
  51. "class": "TestLevel",
  52. "language": "GDScript",
  53. "path": "res://jrpg/scripts/misc/test_level.gd"
  54. }, {
  55. "base": "Node",
  56. "class": "YarnImporter",
  57. "language": "GDScript",
  58. "path": "res://yarn/scripts/yarn-importer.gd"
  59. }, {
  60. "base": "Object",
  61. "class": "YarnRunner",
  62. "language": "GDScript",
  63. "path": "res://addons/yarn_spinner/yarn_runner.gd"
  64. }, {
  65. "base": "Node",
  66. "class": "YarnRunnerNode",
  67. "language": "GDScript",
  68. "path": "res://addons/yarn_spinner/yarn_runner_node.gd"
  69. }, {
  70. "base": "Resource",
  71. "class": "YarnScript",
  72. "language": "GDScript",
  73. "path": "res://addons/yarn_spinner/yarn_script.gd"
  74. } ]
  75. _global_script_class_icons={
  76. "BaseLevel": "",
  77. "BasisInteraction": "",
  78. "CharacterData": "",
  79. "ChoicesBox": "",
  80. "Player": "",
  81. "PlayerInfos": "",
  82. "SpeechText": "",
  83. "TalkInteraction": "",
  84. "TestLevel": "",
  85. "YarnImporter": "",
  86. "YarnRunner": "",
  87. "YarnRunnerNode": "",
  88. "YarnScript": ""
  89. }
  90. [application]
  91. config/name="Chepa"
  92. run/main_scene="res://jrpg/scenes/TestMain.tscn"
  93. config/icon="res://icon.png"
  94. [autoload]
  95. Controller="*res://jrpg/scripts/misc/controller.gd"
  96. [editor_plugins]
  97. enabled=PoolStringArray( "yarn_spinner" )
  98. [gui]
  99. theme/use_hidpi=true
  100. [importer_defaults]
  101. yarn.script={
  102. "use_red_anyway": false
  103. }
  104. [input]
  105. move_forward={
  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":90,"unicode":0,"echo":false,"script":null)
  108. ]
  109. }
  110. move_backward={
  111. "deadzone": 0.5,
  112. "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)
  113. ]
  114. }
  115. move_left={
  116. "deadzone": 0.5,
  117. "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":81,"unicode":0,"echo":false,"script":null)
  118. ]
  119. }
  120. move_right={
  121. "deadzone": 0.5,
  122. "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)
  123. ]
  124. }
  125. jump={
  126. "deadzone": 0.5,
  127. "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)
  128. ]
  129. }
  130. interact={
  131. "deadzone": 0.5,
  132. "events": [ Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"button_mask":0,"position":Vector2( 0, 0 ),"global_position":Vector2( 0, 0 ),"factor":1.0,"button_index":1,"pressed":false,"doubleclick":false,"script":null)
  133. ]
  134. }
  135. run={
  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":16777237,"unicode":0,"echo":false,"script":null)
  138. ]
  139. }
  140. [rendering]
  141. quality/driver/driver_name="GLES2"
  142. vram_compression/import_etc=true
  143. vram_compression/import_etc2=false
  144. environment/default_environment="res://default_env.tres"