|
- ; Engine configuration file.
- ; It's best edited using the editor UI and not directly,
- ; since the parameters that go here are not all obvious.
- ;
- ; Format:
- ; [section] ; section goes between []
- ; param=value ; assign values to parameters
-
- config_version=4
-
- _global_script_classes=[ {
- "base": "Node",
- "class": "BasisInteraction",
- "language": "GDScript",
- "path": "res://jrpg/scripts/entities/components/interactions/basis_interaction.gd"
- }, {
- "base": "VBoxContainer",
- "class": "ChoicesBox",
- "language": "GDScript",
- "path": "res://jrpg/scripts/ui/choices_box.gd"
- }, {
- "base": "Label",
- "class": "SpeechText",
- "language": "GDScript",
- "path": "res://jrpg/scripts/ui/speech_text.gd"
- }, {
- "base": "Node",
- "class": "YarnImporter",
- "language": "GDScript",
- "path": "res://yarn/scripts/yarn-importer.gd"
- }, {
- "base": "Object",
- "class": "YarnRunner",
- "language": "GDScript",
- "path": "res://addons/yarn_spinner/yarn_runner.gd"
- }, {
- "base": "Node",
- "class": "YarnRunnerNode",
- "language": "GDScript",
- "path": "res://addons/yarn_spinner/yarn_runner_node.gd"
- }, {
- "base": "Resource",
- "class": "YarnScript",
- "language": "GDScript",
- "path": "res://addons/yarn_spinner/yarn_script.gd"
- } ]
- _global_script_class_icons={
- "BasisInteraction": "",
- "ChoicesBox": "",
- "SpeechText": "",
- "YarnImporter": "",
- "YarnRunner": "",
- "YarnRunnerNode": "",
- "YarnScript": ""
- }
-
- [application]
-
- config/name="Chepa"
- config/icon="res://icon.png"
-
- [autoload]
-
- Controller="*res://jrpg/scripts/misc/controller.gd"
-
- [editor_plugins]
-
- enabled=PoolStringArray( "yarn_spinner" )
-
- [importer_defaults]
-
- yarn.script={
- "use_red_anyway": false
- }
-
- [input]
-
- move_forward={
- "deadzone": 0.5,
- "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)
- ]
- }
- move_backward={
- "deadzone": 0.5,
- "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)
- ]
- }
- move_left={
- "deadzone": 0.5,
- "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)
- ]
- }
- move_right={
- "deadzone": 0.5,
- "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)
- ]
- }
- jump={
- "deadzone": 0.5,
- "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)
- ]
- }
- interact={
- "deadzone": 0.5,
- "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)
- ]
- }
- run={
- "deadzone": 0.5,
- "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)
- ]
- }
-
- [rendering]
-
- quality/driver/driver_name="GLES2"
- vram_compression/import_etc=true
- vram_compression/import_etc2=false
- environment/default_environment="res://default_env.tres"
|