├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── addons ├── dialogue_editor │ ├── DialogueDialogue2D.gd │ ├── DialogueDialogue3D.gd │ ├── DialogueEditor.gd │ ├── DialogueEditor.tscn │ ├── DialogueManager.gd │ ├── DialogueSave.res │ ├── default │ │ ├── DialogueActorCenter.tscn │ │ ├── DialogueActorLeft.tscn │ │ ├── DialogueActorRight.tscn │ │ ├── fonts │ │ │ ├── Pangolin-Regular.ttf │ │ │ └── Pangolin-Regular.ttf.import │ │ └── styles │ │ │ └── style_base.tres │ ├── icons │ │ ├── Actor.png │ │ ├── Actor.png.import │ │ ├── Add.png │ │ ├── Add.png.import │ │ ├── Bricks.png │ │ ├── Bricks.png.import │ │ ├── Bricks.png~ │ │ ├── Del.png │ │ ├── Del.png.import │ │ ├── Dialogue.png │ │ ├── Dialogue.png.import │ │ ├── Event.png │ │ ├── Event.png.import │ │ ├── Event.png~ │ │ ├── EventEmpty.png │ │ ├── EventEmpty.png.import │ │ ├── EventEmpty.png~ │ │ ├── File.png │ │ ├── File.png.import │ │ ├── Image.png │ │ ├── Image.png.import │ │ ├── Node.png │ │ ├── Node.png.import │ │ ├── Node.png~ │ │ ├── Nodes.png │ │ ├── Nodes.png.import │ │ ├── Play.png │ │ ├── Play.png.import │ │ ├── Play.png~ │ │ ├── Put.png │ │ ├── Put.png.import │ │ ├── Save.png │ │ ├── Save.png.import │ │ ├── Scene.png │ │ ├── Scene.png.import │ │ ├── Scene.png~ │ │ ├── Sentence.png │ │ ├── Sentence.png.import │ │ ├── Trash.png │ │ ├── Trash.png.import │ │ └── Trash.png~ │ ├── inspectors │ │ ├── DialogueMangerDialoguesInspectorPlugin.gd │ │ └── DialogueMangerDialoguesInspectorPluginEditor.gd │ ├── model │ │ ├── DialogueActor.gd │ │ ├── DialogueData.gd │ │ ├── DialogueDialog.gd │ │ ├── DialogueDialogue.gd │ │ ├── DialogueEmpty.gd │ │ ├── DialogueNode.gd │ │ └── DialogueSentence.gd │ ├── plugin.cfg │ ├── plugin.gd │ ├── scenes │ │ ├── actors │ │ │ ├── DialogueActorData.gd │ │ │ ├── DialogueActorData.tscn │ │ │ ├── DialogueActorDataPath.gd │ │ │ ├── DialogueActorDataPath.tscn │ │ │ ├── DialogueActorDataResource.gd │ │ │ ├── DialogueActorDataResource.tscn │ │ │ ├── DialogueActorDataResourceDialogFile.tscn │ │ │ ├── DialogueActorDataTexture.gd │ │ │ ├── DialogueActorDataTexture.tscn │ │ │ ├── DialogueActorUI.gd │ │ │ ├── DialogueActorUI.tscn │ │ │ ├── DialogueActors.gd │ │ │ ├── DialogueActors.tscn │ │ │ ├── DialogueActorsEditorView.gd │ │ │ └── DialogueActorsEditorView.tscn │ │ ├── dialogues │ │ │ ├── DialogueDialogueUI.gd │ │ │ ├── DialogueDialogueUI.tscn │ │ │ ├── DialogueDialogues.gd │ │ │ ├── DialogueDialogues.tscn │ │ │ ├── DialogueDialoguesEditorView.gd │ │ │ ├── DialogueDialoguesEditorView.tscn │ │ │ ├── DialogueDialoguesPlayer.gd │ │ │ ├── DialogueDialoguesPlayer.tscn │ │ │ ├── DialogueEditors.gd │ │ │ ├── DialogueEditors.tscn │ │ │ ├── bricks_view │ │ │ │ └── DialogueBricksView.tscn │ │ │ └── nodes_view │ │ │ │ ├── DialogueNodesView.gd │ │ │ │ ├── DialogueNodesView.tscn │ │ │ │ └── nodes │ │ │ │ ├── NodeBase.gd │ │ │ │ ├── node_end │ │ │ │ ├── NodeEnd.gd │ │ │ │ └── NodeEnd.tscn │ │ │ │ ├── node_sentence │ │ │ │ ├── NodeSentence.gd │ │ │ │ ├── NodeSentence.tscn │ │ │ │ ├── PanelSentence.gd │ │ │ │ └── PanelSentence.tscn │ │ │ │ └── node_start │ │ │ │ ├── NodeStart.gd │ │ │ │ └── NodeStart.tscn │ │ └── scenes │ │ │ ├── DialogueScenePreview.gd │ │ │ ├── DialogueScenePreview.tscn │ │ │ ├── DialogueScenePreviewSentenceDialog.gd │ │ │ ├── DialogueScenePreviewSentenceDialog.tscn │ │ │ ├── DialogueScenePreviewSentenceDialogText.gd │ │ │ ├── DialogueScenePreviewSentenceDialogText.tscn │ │ │ ├── DialogueSceneResourceFile.tscn │ │ │ ├── DialogueSceneUI.gd │ │ │ ├── DialogueSceneUI.tscn │ │ │ ├── DialogueScenes.gd │ │ │ ├── DialogueScenes.tscn │ │ │ ├── DialogueScenesEditorView.gd │ │ │ ├── DialogueScenesEditorView.tscn │ │ │ ├── DialogueScenesVBox.gd │ │ │ └── DialogueScenesVBox.tscn │ └── uuid │ │ ├── .gitattributes │ │ ├── LICENSE │ │ ├── README.md │ │ ├── logo.png │ │ ├── logo.png.import │ │ ├── logo.svg │ │ ├── logo.svg.import │ │ └── uuid.gd ├── dialogue_example │ ├── 2d │ │ ├── Level.gd │ │ ├── Level1.tscn │ │ └── player │ │ │ ├── Player.gd │ │ │ └── Player.tscn │ ├── 3d │ │ ├── Level.gd │ │ ├── Level1.tscn │ │ ├── models │ │ │ ├── Black.material │ │ │ ├── Blue.material │ │ │ ├── Brown.material │ │ │ ├── FlagRed.blend │ │ │ ├── FlagRed.blend.import │ │ │ ├── FlagYellow.blend │ │ │ ├── FlagYellow.blend.import │ │ │ ├── Pink.material │ │ │ ├── Red.material │ │ │ ├── White.material │ │ │ ├── Yellow.material │ │ │ ├── flagRed.dae │ │ │ ├── flagRed.dae.import │ │ │ ├── flagYellow.dae │ │ │ ├── flagYellow.dae.import │ │ │ ├── godotBoy.blend │ │ │ ├── godotBoy.blend.import │ │ │ ├── godotBoy.dae │ │ │ ├── godotBoy.dae.import │ │ │ ├── godotGirl.blend │ │ │ ├── godotGirl.blend.import │ │ │ ├── godotGirl.dae │ │ │ └── godotGirl.dae.import │ │ └── player │ │ │ ├── Player.gd │ │ │ └── Player.tscn │ ├── dialogues │ │ ├── DialogueActorLeftTypedText.gd │ │ └── DialogueActorLeftTypedText.tscn │ ├── textures │ │ ├── Background.png │ │ ├── Background.png.import │ │ ├── Background.png~ │ │ ├── BackgroundSide.png │ │ ├── BackgroundSide.png.import │ │ ├── BackgroundSide.png~ │ │ ├── Boy_eys_closed.png │ │ ├── Boy_eys_closed.png.import │ │ ├── Boy_eys_open.png │ │ ├── Boy_eys_open.png.import │ │ ├── Boy_eys_smile.png │ │ ├── Boy_eys_smile.png.import │ │ ├── Boy_eys_smile.png~ │ │ ├── Boy_mound_open.png │ │ ├── Boy_mound_open.png.import │ │ ├── Boy_mound_open_closed_eys.png │ │ ├── Boy_mound_open_closed_eys.png.import │ │ ├── Flag.png~ │ │ ├── FlagRed.png │ │ ├── FlagRed.png.import │ │ ├── FlagYellow.png │ │ ├── FlagYellow.png.import │ │ ├── FlagYellow.png~ │ │ ├── Girl_eys_angry.png │ │ ├── Girl_eys_angry.png.import │ │ ├── Girl_eys_angry.png~ │ │ ├── Girl_eys_closed.png │ │ ├── Girl_eys_closed.png.import │ │ ├── Girl_eys_open.png │ │ ├── Girl_eys_open.png.import │ │ ├── Girl_eys_smile.png │ │ ├── Girl_eys_smile.png.import │ │ ├── Girl_eys_smile.png~ │ │ ├── Girl_mound_open.png │ │ ├── Girl_mound_open.png.import │ │ ├── Girl_mound_open_closed_eys.png │ │ ├── Girl_mound_open_closed_eys.png.import │ │ ├── Noah_mound_open.png~ │ │ ├── Noah_mound_smile.png~ │ │ └── Way.png~ │ └── textures_animated │ │ ├── GodotBoy.tres │ │ └── GodotGirl.tres └── ui_extensions │ └── dropdown │ ├── Arrow.svg │ ├── Arrow.svg.import │ ├── Cancel.svg │ ├── Cancel.svg.import │ ├── Dropdown.gd │ ├── Dropdown.tscn │ └── DropdownItem.gd ├── dialogue ├── DialogueDialogues.gd └── DialogueEvents.gd ├── icon.png ├── icon.png.import └── project.godot /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Godot 4+ specific ignores 2 | .godot/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/README.md -------------------------------------------------------------------------------- /addons/dialogue_editor/DialogueDialogue2D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/DialogueDialogue2D.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/DialogueDialogue3D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/DialogueDialogue3D.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/DialogueEditor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/DialogueEditor.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/DialogueEditor.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/DialogueEditor.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/DialogueManager.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/DialogueManager.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/DialogueSave.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/DialogueSave.res -------------------------------------------------------------------------------- /addons/dialogue_editor/default/DialogueActorCenter.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/default/DialogueActorCenter.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/default/DialogueActorLeft.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/default/DialogueActorLeft.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/default/DialogueActorRight.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/default/DialogueActorRight.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/default/fonts/Pangolin-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/default/fonts/Pangolin-Regular.ttf -------------------------------------------------------------------------------- /addons/dialogue_editor/default/fonts/Pangolin-Regular.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/default/fonts/Pangolin-Regular.ttf.import -------------------------------------------------------------------------------- /addons/dialogue_editor/default/styles/style_base.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/default/styles/style_base.tres -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Actor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Actor.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Actor.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Actor.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Add.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Add.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Add.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Bricks.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Bricks.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Bricks.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Bricks.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Bricks.png~ -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Del.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Del.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Del.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Dialogue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Dialogue.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Dialogue.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Dialogue.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Event.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Event.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Event.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Event.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Event.png~ -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/EventEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/EventEmpty.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/EventEmpty.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/EventEmpty.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/EventEmpty.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/EventEmpty.png~ -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/File.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/File.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/File.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Image.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Image.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Image.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Node.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Node.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Node.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Node.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Node.png~ -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Nodes.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Nodes.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Nodes.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Play.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Play.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Play.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Play.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Play.png~ -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Put.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Put.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Put.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Put.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Save.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Save.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Save.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Scene.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Scene.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Scene.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Scene.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Scene.png~ -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Sentence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Sentence.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Sentence.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Sentence.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Trash.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Trash.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Trash.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Trash.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/icons/Trash.png~ -------------------------------------------------------------------------------- /addons/dialogue_editor/inspectors/DialogueMangerDialoguesInspectorPlugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/inspectors/DialogueMangerDialoguesInspectorPlugin.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/inspectors/DialogueMangerDialoguesInspectorPluginEditor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/inspectors/DialogueMangerDialoguesInspectorPluginEditor.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/model/DialogueActor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/model/DialogueActor.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/model/DialogueData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/model/DialogueData.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/model/DialogueDialog.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/model/DialogueDialog.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/model/DialogueDialogue.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/model/DialogueDialogue.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/model/DialogueEmpty.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/model/DialogueEmpty.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/model/DialogueNode.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/model/DialogueNode.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/model/DialogueSentence.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/model/DialogueSentence.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/plugin.cfg -------------------------------------------------------------------------------- /addons/dialogue_editor/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/plugin.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActorData.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorData.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActorData.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorDataPath.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActorDataPath.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorDataPath.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActorDataPath.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorDataResource.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActorDataResource.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorDataResource.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActorDataResource.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorDataResourceDialogFile.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActorDataResourceDialogFile.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorDataTexture.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActorDataTexture.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorDataTexture.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActorDataTexture.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActorUI.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorUI.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActorUI.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActors.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActors.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActors.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActors.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorsEditorView.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActorsEditorView.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorsEditorView.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActorsEditorView.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/DialogueDialogueUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/dialogues/DialogueDialogueUI.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/DialogueDialogueUI.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/dialogues/DialogueDialogueUI.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/DialogueDialogues.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/dialogues/DialogueDialogues.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/DialogueDialogues.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/dialogues/DialogueDialogues.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/DialogueDialoguesEditorView.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/dialogues/DialogueDialoguesEditorView.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/DialogueDialoguesEditorView.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/dialogues/DialogueDialoguesEditorView.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/DialogueDialoguesPlayer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/dialogues/DialogueDialoguesPlayer.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/DialogueDialoguesPlayer.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/dialogues/DialogueDialoguesPlayer.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/DialogueEditors.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/dialogues/DialogueEditors.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/DialogueEditors.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/dialogues/DialogueEditors.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/bricks_view/DialogueBricksView.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/dialogues/bricks_view/DialogueBricksView.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/nodes_view/DialogueNodesView.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/dialogues/nodes_view/DialogueNodesView.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/nodes_view/DialogueNodesView.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/dialogues/nodes_view/DialogueNodesView.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/nodes_view/nodes/NodeBase.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/dialogues/nodes_view/nodes/NodeBase.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/nodes_view/nodes/node_end/NodeEnd.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/dialogues/nodes_view/nodes/node_end/NodeEnd.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/nodes_view/nodes/node_end/NodeEnd.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/dialogues/nodes_view/nodes/node_end/NodeEnd.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/nodes_view/nodes/node_sentence/NodeSentence.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/dialogues/nodes_view/nodes/node_sentence/NodeSentence.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/nodes_view/nodes/node_sentence/NodeSentence.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/dialogues/nodes_view/nodes/node_sentence/NodeSentence.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/nodes_view/nodes/node_sentence/PanelSentence.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/dialogues/nodes_view/nodes/node_sentence/PanelSentence.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/nodes_view/nodes/node_sentence/PanelSentence.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/dialogues/nodes_view/nodes/node_sentence/PanelSentence.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/nodes_view/nodes/node_start/NodeStart.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/dialogues/nodes_view/nodes/node_start/NodeStart.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/nodes_view/nodes/node_start/NodeStart.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/dialogues/nodes_view/nodes/node_start/NodeStart.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueScenePreview.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/scenes/DialogueScenePreview.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueScenePreview.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/scenes/DialogueScenePreview.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueScenePreviewSentenceDialog.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/scenes/DialogueScenePreviewSentenceDialog.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueScenePreviewSentenceDialog.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/scenes/DialogueScenePreviewSentenceDialog.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueScenePreviewSentenceDialogText.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/scenes/DialogueScenePreviewSentenceDialogText.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueScenePreviewSentenceDialogText.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/scenes/DialogueScenePreviewSentenceDialogText.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueSceneResourceFile.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/scenes/DialogueSceneResourceFile.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueSceneUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/scenes/DialogueSceneUI.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueSceneUI.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/scenes/DialogueSceneUI.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueScenes.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/scenes/DialogueScenes.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueScenes.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/scenes/DialogueScenes.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueScenesEditorView.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/scenes/DialogueScenesEditorView.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueScenesEditorView.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/scenes/DialogueScenesEditorView.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueScenesVBox.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/scenes/DialogueScenesVBox.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueScenesVBox.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/scenes/scenes/DialogueScenesVBox.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/uuid/.gitattributes: -------------------------------------------------------------------------------- 1 | *.gd linguist-language=GDScript 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/uuid/LICENSE -------------------------------------------------------------------------------- /addons/dialogue_editor/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/uuid/README.md -------------------------------------------------------------------------------- /addons/dialogue_editor/uuid/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/uuid/logo.png -------------------------------------------------------------------------------- /addons/dialogue_editor/uuid/logo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/uuid/logo.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/uuid/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/uuid/logo.svg -------------------------------------------------------------------------------- /addons/dialogue_editor/uuid/logo.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/uuid/logo.svg.import -------------------------------------------------------------------------------- /addons/dialogue_editor/uuid/uuid.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_editor/uuid/uuid.gd -------------------------------------------------------------------------------- /addons/dialogue_example/2d/Level.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/2d/Level.gd -------------------------------------------------------------------------------- /addons/dialogue_example/2d/Level1.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/2d/Level1.tscn -------------------------------------------------------------------------------- /addons/dialogue_example/2d/player/Player.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/2d/player/Player.gd -------------------------------------------------------------------------------- /addons/dialogue_example/2d/player/Player.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/2d/player/Player.tscn -------------------------------------------------------------------------------- /addons/dialogue_example/3d/Level.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/3d/Level.gd -------------------------------------------------------------------------------- /addons/dialogue_example/3d/Level1.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/3d/Level1.tscn -------------------------------------------------------------------------------- /addons/dialogue_example/3d/models/Black.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/3d/models/Black.material -------------------------------------------------------------------------------- /addons/dialogue_example/3d/models/Blue.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/3d/models/Blue.material -------------------------------------------------------------------------------- /addons/dialogue_example/3d/models/Brown.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/3d/models/Brown.material -------------------------------------------------------------------------------- /addons/dialogue_example/3d/models/FlagRed.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/3d/models/FlagRed.blend -------------------------------------------------------------------------------- /addons/dialogue_example/3d/models/FlagRed.blend.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/3d/models/FlagRed.blend.import -------------------------------------------------------------------------------- /addons/dialogue_example/3d/models/FlagYellow.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/3d/models/FlagYellow.blend -------------------------------------------------------------------------------- /addons/dialogue_example/3d/models/FlagYellow.blend.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/3d/models/FlagYellow.blend.import -------------------------------------------------------------------------------- /addons/dialogue_example/3d/models/Pink.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/3d/models/Pink.material -------------------------------------------------------------------------------- /addons/dialogue_example/3d/models/Red.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/3d/models/Red.material -------------------------------------------------------------------------------- /addons/dialogue_example/3d/models/White.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/3d/models/White.material -------------------------------------------------------------------------------- /addons/dialogue_example/3d/models/Yellow.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/3d/models/Yellow.material -------------------------------------------------------------------------------- /addons/dialogue_example/3d/models/flagRed.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/3d/models/flagRed.dae -------------------------------------------------------------------------------- /addons/dialogue_example/3d/models/flagRed.dae.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/3d/models/flagRed.dae.import -------------------------------------------------------------------------------- /addons/dialogue_example/3d/models/flagYellow.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/3d/models/flagYellow.dae -------------------------------------------------------------------------------- /addons/dialogue_example/3d/models/flagYellow.dae.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/3d/models/flagYellow.dae.import -------------------------------------------------------------------------------- /addons/dialogue_example/3d/models/godotBoy.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/3d/models/godotBoy.blend -------------------------------------------------------------------------------- /addons/dialogue_example/3d/models/godotBoy.blend.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/3d/models/godotBoy.blend.import -------------------------------------------------------------------------------- /addons/dialogue_example/3d/models/godotBoy.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/3d/models/godotBoy.dae -------------------------------------------------------------------------------- /addons/dialogue_example/3d/models/godotBoy.dae.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/3d/models/godotBoy.dae.import -------------------------------------------------------------------------------- /addons/dialogue_example/3d/models/godotGirl.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/3d/models/godotGirl.blend -------------------------------------------------------------------------------- /addons/dialogue_example/3d/models/godotGirl.blend.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/3d/models/godotGirl.blend.import -------------------------------------------------------------------------------- /addons/dialogue_example/3d/models/godotGirl.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/3d/models/godotGirl.dae -------------------------------------------------------------------------------- /addons/dialogue_example/3d/models/godotGirl.dae.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/3d/models/godotGirl.dae.import -------------------------------------------------------------------------------- /addons/dialogue_example/3d/player/Player.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/3d/player/Player.gd -------------------------------------------------------------------------------- /addons/dialogue_example/3d/player/Player.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/3d/player/Player.tscn -------------------------------------------------------------------------------- /addons/dialogue_example/dialogues/DialogueActorLeftTypedText.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/dialogues/DialogueActorLeftTypedText.gd -------------------------------------------------------------------------------- /addons/dialogue_example/dialogues/DialogueActorLeftTypedText.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/dialogues/DialogueActorLeftTypedText.tscn -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Background.png -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Background.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Background.png.import -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Background.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Background.png~ -------------------------------------------------------------------------------- /addons/dialogue_example/textures/BackgroundSide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/BackgroundSide.png -------------------------------------------------------------------------------- /addons/dialogue_example/textures/BackgroundSide.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/BackgroundSide.png.import -------------------------------------------------------------------------------- /addons/dialogue_example/textures/BackgroundSide.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/BackgroundSide.png~ -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Boy_eys_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Boy_eys_closed.png -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Boy_eys_closed.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Boy_eys_closed.png.import -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Boy_eys_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Boy_eys_open.png -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Boy_eys_open.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Boy_eys_open.png.import -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Boy_eys_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Boy_eys_smile.png -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Boy_eys_smile.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Boy_eys_smile.png.import -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Boy_eys_smile.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Boy_eys_smile.png~ -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Boy_mound_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Boy_mound_open.png -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Boy_mound_open.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Boy_mound_open.png.import -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Boy_mound_open_closed_eys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Boy_mound_open_closed_eys.png -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Boy_mound_open_closed_eys.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Boy_mound_open_closed_eys.png.import -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Flag.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Flag.png~ -------------------------------------------------------------------------------- /addons/dialogue_example/textures/FlagRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/FlagRed.png -------------------------------------------------------------------------------- /addons/dialogue_example/textures/FlagRed.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/FlagRed.png.import -------------------------------------------------------------------------------- /addons/dialogue_example/textures/FlagYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/FlagYellow.png -------------------------------------------------------------------------------- /addons/dialogue_example/textures/FlagYellow.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/FlagYellow.png.import -------------------------------------------------------------------------------- /addons/dialogue_example/textures/FlagYellow.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/FlagYellow.png~ -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Girl_eys_angry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Girl_eys_angry.png -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Girl_eys_angry.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Girl_eys_angry.png.import -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Girl_eys_angry.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Girl_eys_angry.png~ -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Girl_eys_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Girl_eys_closed.png -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Girl_eys_closed.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Girl_eys_closed.png.import -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Girl_eys_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Girl_eys_open.png -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Girl_eys_open.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Girl_eys_open.png.import -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Girl_eys_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Girl_eys_smile.png -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Girl_eys_smile.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Girl_eys_smile.png.import -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Girl_eys_smile.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Girl_eys_smile.png~ -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Girl_mound_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Girl_mound_open.png -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Girl_mound_open.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Girl_mound_open.png.import -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Girl_mound_open_closed_eys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Girl_mound_open_closed_eys.png -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Girl_mound_open_closed_eys.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Girl_mound_open_closed_eys.png.import -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Noah_mound_open.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Noah_mound_open.png~ -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Noah_mound_smile.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Noah_mound_smile.png~ -------------------------------------------------------------------------------- /addons/dialogue_example/textures/Way.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures/Way.png~ -------------------------------------------------------------------------------- /addons/dialogue_example/textures_animated/GodotBoy.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures_animated/GodotBoy.tres -------------------------------------------------------------------------------- /addons/dialogue_example/textures_animated/GodotGirl.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/dialogue_example/textures_animated/GodotGirl.tres -------------------------------------------------------------------------------- /addons/ui_extensions/dropdown/Arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/ui_extensions/dropdown/Arrow.svg -------------------------------------------------------------------------------- /addons/ui_extensions/dropdown/Arrow.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/ui_extensions/dropdown/Arrow.svg.import -------------------------------------------------------------------------------- /addons/ui_extensions/dropdown/Cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/ui_extensions/dropdown/Cancel.svg -------------------------------------------------------------------------------- /addons/ui_extensions/dropdown/Cancel.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/ui_extensions/dropdown/Cancel.svg.import -------------------------------------------------------------------------------- /addons/ui_extensions/dropdown/Dropdown.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/ui_extensions/dropdown/Dropdown.gd -------------------------------------------------------------------------------- /addons/ui_extensions/dropdown/Dropdown.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/ui_extensions/dropdown/Dropdown.tscn -------------------------------------------------------------------------------- /addons/ui_extensions/dropdown/DropdownItem.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/addons/ui_extensions/dropdown/DropdownItem.gd -------------------------------------------------------------------------------- /dialogue/DialogueDialogues.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/dialogue/DialogueDialogues.gd -------------------------------------------------------------------------------- /dialogue/DialogueEvents.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/dialogue/DialogueEvents.gd -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/icon.png.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4DialogueEditor/HEAD/project.godot --------------------------------------------------------------------------------