mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-15 03:33:46 +00:00
Dialogue System
This commit is contained in:
parent
77765a581e
commit
1fa77f0c03
690 changed files with 46698 additions and 14 deletions
|
|
@ -21,7 +21,7 @@ Settings/temporaryLogLifetime=5.0
|
|||
[application]
|
||||
|
||||
config/name="Cirno"
|
||||
run/main_scene="res://Scenes/Maps/BossTestArena.tscn"
|
||||
run/main_scene="res://Scenes/test.tscn"
|
||||
config/features=PackedStringArray("4.3", "C#", "GL Compatibility")
|
||||
config/icon="res://icon.svg"
|
||||
|
||||
|
|
@ -29,6 +29,40 @@ config/icon="res://icon.svg"
|
|||
|
||||
DebugStats="res://Scenes/debug_stats.tscn"
|
||||
DebugGUI="*res://addons/DebugGUI/DebugGUI.cs"
|
||||
Dialogic="*res://addons/dialogic/Core/DialogicGameHandler.gd"
|
||||
|
||||
[dialogic]
|
||||
|
||||
directories/dch_directory={
|
||||
"Cirno": "res://Dialogue/Characters/Cirno.dch"
|
||||
}
|
||||
directories/dtl_directory={
|
||||
"timeline": "res://Dialogue/timeline.dtl"
|
||||
}
|
||||
glossary/default_case_sensitive=true
|
||||
layout/style_list=["res://Dialogue/Styles/Textbox_style.tres"]
|
||||
layout/default_style="res://Dialogue/Styles/Textbox_style.tres"
|
||||
variables={}
|
||||
extensions_folder="res://addons/dialogic_additions"
|
||||
text/letter_speed=0.01
|
||||
text/initial_text_reveal_skippable=true
|
||||
text/text_reveal_skip_delay=0.1
|
||||
text/advance_delay=0.1
|
||||
text/autoadvance_per_character_delay=0.1
|
||||
text/autoadvance_ignored_characters_enabled=true
|
||||
audio/max_channels=4.0
|
||||
animations/join_default_length=0.5
|
||||
animations/join_default_wait=true
|
||||
animations/leave_default_length=0.5
|
||||
animations/leave_default_wait=true
|
||||
animations/cross_fade_default_length=0.5
|
||||
choices/autofocus_first=true
|
||||
choices/delay=0.2
|
||||
choices/reveal_delay=0
|
||||
choices/reveal_by_input=false
|
||||
save/autosave_delay=60.0
|
||||
save/encryption_on_exports_only=true
|
||||
text/autopauses={}
|
||||
|
||||
[display]
|
||||
|
||||
|
|
@ -45,7 +79,7 @@ project/assembly_name="Cirno"
|
|||
|
||||
[editor_plugins]
|
||||
|
||||
enabled=PackedStringArray("res://addons/DebugGUI/plugin.cfg", "res://addons/smoothing/plugin.cfg")
|
||||
enabled=PackedStringArray("res://addons/DebugGUI/plugin.cfg", "res://addons/dialogic/plugin.cfg", "res://addons/smoothing/plugin.cfg")
|
||||
|
||||
[global_group]
|
||||
|
||||
|
|
@ -127,6 +161,15 @@ scan={
|
|||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":69,"key_label":0,"unicode":101,"location":0,"echo":false,"script":null)
|
||||
]
|
||||
}
|
||||
dialogic_default_action={
|
||||
"deadzone": 0.5,
|
||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194309,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
||||
, Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"button_mask":0,"position":Vector2(0, 0),"global_position":Vector2(0, 0),"factor":1.0,"button_index":1,"canceled":false,"pressed":true,"double_click":false,"script":null)
|
||||
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":32,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
||||
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":88,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
||||
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":0,"pressure":0.0,"pressed":false,"script":null)
|
||||
]
|
||||
}
|
||||
|
||||
[layer_names]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue