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.
 
 

120 lines
3.7 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": "BasisInteraction",
  12. "language": "GDScript",
  13. "path": "res://jrpg/scripts/entities/components/interactions/basis_interaction.gd"
  14. }, {
  15. "base": "VBoxContainer",
  16. "class": "ChoicesBox",
  17. "language": "GDScript",
  18. "path": "res://jrpg/scripts/ui/choices_box.gd"
  19. }, {
  20. "base": "Label",
  21. "class": "SpeechText",
  22. "language": "GDScript",
  23. "path": "res://jrpg/scripts/ui/speech_text.gd"
  24. }, {
  25. "base": "Node",
  26. "class": "YarnImporter",
  27. "language": "GDScript",
  28. "path": "res://yarn/scripts/yarn-importer.gd"
  29. }, {
  30. "base": "Object",
  31. "class": "YarnRunner",
  32. "language": "GDScript",
  33. "path": "res://addons/yarn_spinner/yarn_runner.gd"
  34. }, {
  35. "base": "Node",
  36. "class": "YarnRunnerNode",
  37. "language": "GDScript",
  38. "path": "res://addons/yarn_spinner/yarn_runner_node.gd"
  39. }, {
  40. "base": "Resource",
  41. "class": "YarnScript",
  42. "language": "GDScript",
  43. "path": "res://addons/yarn_spinner/yarn_script.gd"
  44. } ]
  45. _global_script_class_icons={
  46. "BasisInteraction": "",
  47. "ChoicesBox": "",
  48. "SpeechText": "",
  49. "YarnImporter": "",
  50. "YarnRunner": "",
  51. "YarnRunnerNode": "",
  52. "YarnScript": ""
  53. }
  54. [application]
  55. config/name="Chepa"
  56. config/icon="res://icon.png"
  57. [autoload]
  58. Controller="*res://jrpg/scripts/misc/controller.gd"
  59. [editor_plugins]
  60. enabled=PoolStringArray( "yarn_spinner" )
  61. [importer_defaults]
  62. yarn.script={
  63. "use_red_anyway": false
  64. }
  65. [input]
  66. move_forward={
  67. "deadzone": 0.5,
  68. "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)
  69. ]
  70. }
  71. move_backward={
  72. "deadzone": 0.5,
  73. "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)
  74. ]
  75. }
  76. move_left={
  77. "deadzone": 0.5,
  78. "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)
  79. ]
  80. }
  81. move_right={
  82. "deadzone": 0.5,
  83. "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)
  84. ]
  85. }
  86. jump={
  87. "deadzone": 0.5,
  88. "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)
  89. ]
  90. }
  91. interact={
  92. "deadzone": 0.5,
  93. "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)
  94. ]
  95. }
  96. run={
  97. "deadzone": 0.5,
  98. "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)
  99. ]
  100. }
  101. [rendering]
  102. quality/driver/driver_name="GLES2"
  103. vram_compression/import_etc=true
  104. vram_compression/import_etc2=false
  105. environment/default_environment="res://default_env.tres"