├── .gitignore ├── Dialog-System-Example ├── Dialog_Player.tscn ├── fonts │ ├── Cave-Story.ttf │ ├── body_font.tres │ ├── option_font.tres │ └── speaker_font.tres ├── scenes │ ├── Option.gd │ └── Option.tscn ├── scripts │ ├── dialog_player.gd │ └── simulatedregistry.gd ├── stories │ ├── Example_Story_Temp.tres │ └── Example_Story_Temp_Baked.tres └── textures │ ├── characters │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ └── 5.png │ └── menu_section_9patch.png ├── LICENSE.txt ├── README.md ├── addons └── EXP-System-Dialog │ ├── Dialog Editor │ ├── Dialog_Editor.tscn │ ├── Editor │ │ ├── Editor.tscn │ │ └── editor.gd │ ├── Nodes │ │ └── Line │ │ │ ├── Line_Node.tscn │ │ │ ├── icon_distraction_free.svg │ │ │ └── line_node.gd │ └── dialog_editor.gd │ ├── Images │ ├── de.png │ ├── icon.png │ └── se.png │ ├── Reference_StoryReader │ └── EXP_StoryReader.gd │ ├── Resource_BakedStory │ └── EXP_BakedStory.gd │ ├── Resource_EditorStory │ └── EXP_EditorStory.gd │ ├── Resource_NodeTemplate │ └── EXP_NodeTemplate.gd │ ├── Story Editor │ ├── Dialog Record │ │ ├── Dialog_Record.tscn │ │ └── dialog_record.gd │ ├── Rename Record Box │ │ ├── Rename_Record_Box.tscn │ │ └── rename_record_box.gd │ ├── Story_Editor.tscn │ └── story_editor.gd │ ├── plugin.cfg │ └── plugin.gd └── project.godot /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/.gitignore -------------------------------------------------------------------------------- /Dialog-System-Example/Dialog_Player.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/Dialog-System-Example/Dialog_Player.tscn -------------------------------------------------------------------------------- /Dialog-System-Example/fonts/Cave-Story.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/Dialog-System-Example/fonts/Cave-Story.ttf -------------------------------------------------------------------------------- /Dialog-System-Example/fonts/body_font.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/Dialog-System-Example/fonts/body_font.tres -------------------------------------------------------------------------------- /Dialog-System-Example/fonts/option_font.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/Dialog-System-Example/fonts/option_font.tres -------------------------------------------------------------------------------- /Dialog-System-Example/fonts/speaker_font.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/Dialog-System-Example/fonts/speaker_font.tres -------------------------------------------------------------------------------- /Dialog-System-Example/scenes/Option.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/Dialog-System-Example/scenes/Option.gd -------------------------------------------------------------------------------- /Dialog-System-Example/scenes/Option.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/Dialog-System-Example/scenes/Option.tscn -------------------------------------------------------------------------------- /Dialog-System-Example/scripts/dialog_player.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/Dialog-System-Example/scripts/dialog_player.gd -------------------------------------------------------------------------------- /Dialog-System-Example/scripts/simulatedregistry.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/Dialog-System-Example/scripts/simulatedregistry.gd -------------------------------------------------------------------------------- /Dialog-System-Example/stories/Example_Story_Temp.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/Dialog-System-Example/stories/Example_Story_Temp.tres -------------------------------------------------------------------------------- /Dialog-System-Example/stories/Example_Story_Temp_Baked.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/Dialog-System-Example/stories/Example_Story_Temp_Baked.tres -------------------------------------------------------------------------------- /Dialog-System-Example/textures/characters/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/Dialog-System-Example/textures/characters/1.png -------------------------------------------------------------------------------- /Dialog-System-Example/textures/characters/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/Dialog-System-Example/textures/characters/2.png -------------------------------------------------------------------------------- /Dialog-System-Example/textures/characters/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/Dialog-System-Example/textures/characters/3.png -------------------------------------------------------------------------------- /Dialog-System-Example/textures/characters/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/Dialog-System-Example/textures/characters/4.png -------------------------------------------------------------------------------- /Dialog-System-Example/textures/characters/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/Dialog-System-Example/textures/characters/5.png -------------------------------------------------------------------------------- /Dialog-System-Example/textures/menu_section_9patch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/Dialog-System-Example/textures/menu_section_9patch.png -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/README.md -------------------------------------------------------------------------------- /addons/EXP-System-Dialog/Dialog Editor/Dialog_Editor.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/addons/EXP-System-Dialog/Dialog Editor/Dialog_Editor.tscn -------------------------------------------------------------------------------- /addons/EXP-System-Dialog/Dialog Editor/Editor/Editor.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/addons/EXP-System-Dialog/Dialog Editor/Editor/Editor.tscn -------------------------------------------------------------------------------- /addons/EXP-System-Dialog/Dialog Editor/Editor/editor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/addons/EXP-System-Dialog/Dialog Editor/Editor/editor.gd -------------------------------------------------------------------------------- /addons/EXP-System-Dialog/Dialog Editor/Nodes/Line/Line_Node.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/addons/EXP-System-Dialog/Dialog Editor/Nodes/Line/Line_Node.tscn -------------------------------------------------------------------------------- /addons/EXP-System-Dialog/Dialog Editor/Nodes/Line/icon_distraction_free.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/addons/EXP-System-Dialog/Dialog Editor/Nodes/Line/icon_distraction_free.svg -------------------------------------------------------------------------------- /addons/EXP-System-Dialog/Dialog Editor/Nodes/Line/line_node.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/addons/EXP-System-Dialog/Dialog Editor/Nodes/Line/line_node.gd -------------------------------------------------------------------------------- /addons/EXP-System-Dialog/Dialog Editor/dialog_editor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/addons/EXP-System-Dialog/Dialog Editor/dialog_editor.gd -------------------------------------------------------------------------------- /addons/EXP-System-Dialog/Images/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/addons/EXP-System-Dialog/Images/de.png -------------------------------------------------------------------------------- /addons/EXP-System-Dialog/Images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/addons/EXP-System-Dialog/Images/icon.png -------------------------------------------------------------------------------- /addons/EXP-System-Dialog/Images/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/addons/EXP-System-Dialog/Images/se.png -------------------------------------------------------------------------------- /addons/EXP-System-Dialog/Reference_StoryReader/EXP_StoryReader.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/addons/EXP-System-Dialog/Reference_StoryReader/EXP_StoryReader.gd -------------------------------------------------------------------------------- /addons/EXP-System-Dialog/Resource_BakedStory/EXP_BakedStory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/addons/EXP-System-Dialog/Resource_BakedStory/EXP_BakedStory.gd -------------------------------------------------------------------------------- /addons/EXP-System-Dialog/Resource_EditorStory/EXP_EditorStory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/addons/EXP-System-Dialog/Resource_EditorStory/EXP_EditorStory.gd -------------------------------------------------------------------------------- /addons/EXP-System-Dialog/Resource_NodeTemplate/EXP_NodeTemplate.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/addons/EXP-System-Dialog/Resource_NodeTemplate/EXP_NodeTemplate.gd -------------------------------------------------------------------------------- /addons/EXP-System-Dialog/Story Editor/Dialog Record/Dialog_Record.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/addons/EXP-System-Dialog/Story Editor/Dialog Record/Dialog_Record.tscn -------------------------------------------------------------------------------- /addons/EXP-System-Dialog/Story Editor/Dialog Record/dialog_record.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/addons/EXP-System-Dialog/Story Editor/Dialog Record/dialog_record.gd -------------------------------------------------------------------------------- /addons/EXP-System-Dialog/Story Editor/Rename Record Box/Rename_Record_Box.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/addons/EXP-System-Dialog/Story Editor/Rename Record Box/Rename_Record_Box.tscn -------------------------------------------------------------------------------- /addons/EXP-System-Dialog/Story Editor/Rename Record Box/rename_record_box.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/addons/EXP-System-Dialog/Story Editor/Rename Record Box/rename_record_box.gd -------------------------------------------------------------------------------- /addons/EXP-System-Dialog/Story Editor/Story_Editor.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/addons/EXP-System-Dialog/Story Editor/Story_Editor.tscn -------------------------------------------------------------------------------- /addons/EXP-System-Dialog/Story Editor/story_editor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/addons/EXP-System-Dialog/Story Editor/story_editor.gd -------------------------------------------------------------------------------- /addons/EXP-System-Dialog/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/addons/EXP-System-Dialog/plugin.cfg -------------------------------------------------------------------------------- /addons/EXP-System-Dialog/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/addons/EXP-System-Dialog/plugin.gd -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Dialog-System/HEAD/project.godot --------------------------------------------------------------------------------