├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── addons ├── dialogue_editor │ ├── DialogueDialogue2D.gd │ ├── DialogueDialogue2D.gd.uid │ ├── DialogueDialogue3D.gd │ ├── DialogueDialogue3D.gd.uid │ ├── DialogueEditor.gd │ ├── DialogueEditor.gd.uid │ ├── DialogueEditor.tscn │ ├── DialogueManager.gd │ ├── DialogueManager.gd.uid │ ├── 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~ │ │ ├── Copy.png │ │ ├── Copy.png.import │ │ ├── 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 │ │ ├── DialogueMangerDialoguesInspectorPlugin.gd.uid │ │ ├── DialogueMangerDialoguesInspectorPluginEditor.gd │ │ └── DialogueMangerDialoguesInspectorPluginEditor.gd.uid │ ├── model │ │ ├── DialogueActor.gd │ │ ├── DialogueActor.gd.uid │ │ ├── DialogueData.gd │ │ ├── DialogueData.gd.uid │ │ ├── DialogueDialog.gd │ │ ├── DialogueDialog.gd.uid │ │ ├── DialogueDialogue.gd │ │ ├── DialogueDialogue.gd.uid │ │ ├── DialogueEmpty.gd │ │ ├── DialogueEmpty.gd.uid │ │ ├── DialogueNode.gd │ │ ├── DialogueNode.gd.uid │ │ ├── DialogueSentence.gd │ │ └── DialogueSentence.gd.uid │ ├── plugin.cfg │ ├── plugin.gd │ ├── plugin.gd.uid │ ├── scenes │ │ ├── actors │ │ │ ├── DialogueActorData.gd │ │ │ ├── DialogueActorData.gd.uid │ │ │ ├── DialogueActorData.tscn │ │ │ ├── DialogueActorDataPath.gd │ │ │ ├── DialogueActorDataPath.gd.uid │ │ │ ├── DialogueActorDataPath.tscn │ │ │ ├── DialogueActorDataResource.gd │ │ │ ├── DialogueActorDataResource.gd.uid │ │ │ ├── DialogueActorDataResource.tscn │ │ │ ├── DialogueActorDataResourceDialogFile.tscn │ │ │ ├── DialogueActorDataTexture.gd │ │ │ ├── DialogueActorDataTexture.gd.uid │ │ │ ├── DialogueActorDataTexture.tscn │ │ │ ├── DialogueActorUI.gd │ │ │ ├── DialogueActorUI.gd.uid │ │ │ ├── DialogueActorUI.tscn │ │ │ ├── DialogueActors.gd │ │ │ ├── DialogueActors.gd.uid │ │ │ ├── DialogueActors.tscn │ │ │ ├── DialogueActorsEditorView.gd │ │ │ ├── DialogueActorsEditorView.gd.uid │ │ │ └── DialogueActorsEditorView.tscn │ │ ├── dialogues │ │ │ ├── DialogueDialogueUI.gd │ │ │ ├── DialogueDialogueUI.gd.uid │ │ │ ├── DialogueDialogueUI.tscn │ │ │ ├── DialogueDialogues.gd │ │ │ ├── DialogueDialogues.gd.uid │ │ │ ├── DialogueDialogues.tscn │ │ │ ├── DialogueDialoguesEditorView.gd │ │ │ ├── DialogueDialoguesEditorView.gd.uid │ │ │ ├── DialogueDialoguesEditorView.tscn │ │ │ ├── DialogueDialoguesPlayer.gd │ │ │ ├── DialogueDialoguesPlayer.gd.uid │ │ │ ├── DialogueDialoguesPlayer.tscn │ │ │ ├── DialogueEditors.gd │ │ │ ├── DialogueEditors.gd.uid │ │ │ ├── DialogueEditors.tscn │ │ │ ├── bricks_view │ │ │ │ └── DialogueBricksView.tscn │ │ │ └── nodes_view │ │ │ │ ├── DialogueNodesView.gd │ │ │ │ ├── DialogueNodesView.gd.uid │ │ │ │ ├── DialogueNodesView.tscn │ │ │ │ └── nodes │ │ │ │ ├── NodeBase.gd │ │ │ │ ├── NodeBase.gd.uid │ │ │ │ ├── node_end │ │ │ │ ├── NodeEnd.gd │ │ │ │ ├── NodeEnd.gd.uid │ │ │ │ └── NodeEnd.tscn │ │ │ │ ├── node_sentence │ │ │ │ ├── NodeSentence.gd │ │ │ │ ├── NodeSentence.gd.uid │ │ │ │ ├── NodeSentence.tscn │ │ │ │ ├── PanelSentence.gd │ │ │ │ ├── PanelSentence.gd.uid │ │ │ │ └── PanelSentence.tscn │ │ │ │ └── node_start │ │ │ │ ├── NodeStart.gd │ │ │ │ ├── NodeStart.gd.uid │ │ │ │ └── NodeStart.tscn │ │ └── scenes │ │ │ ├── DialogueScenePreview.gd │ │ │ ├── DialogueScenePreview.gd.uid │ │ │ ├── DialogueScenePreview.tscn │ │ │ ├── DialogueScenePreviewSentenceDialog.gd │ │ │ ├── DialogueScenePreviewSentenceDialog.gd.uid │ │ │ ├── DialogueScenePreviewSentenceDialog.tscn │ │ │ ├── DialogueScenePreviewSentenceDialogText.gd │ │ │ ├── DialogueScenePreviewSentenceDialogText.gd.uid │ │ │ ├── DialogueScenePreviewSentenceDialogText.tscn │ │ │ ├── DialogueSceneResourceFile.tscn │ │ │ ├── DialogueSceneUI.gd │ │ │ ├── DialogueSceneUI.gd.uid │ │ │ ├── DialogueSceneUI.tscn │ │ │ ├── DialogueScenes.gd │ │ │ ├── DialogueScenes.gd.uid │ │ │ ├── DialogueScenes.tscn │ │ │ ├── DialogueScenesEditorView.gd │ │ │ ├── DialogueScenesEditorView.gd.uid │ │ │ ├── DialogueScenesEditorView.tscn │ │ │ ├── DialogueScenesVBox.gd │ │ │ ├── DialogueScenesVBox.gd.uid │ │ │ └── DialogueScenesVBox.tscn │ └── uuid │ │ ├── .gitattributes │ │ ├── LICENSE │ │ ├── README.md │ │ ├── logo.png │ │ ├── logo.png.import │ │ ├── logo.svg │ │ ├── logo.svg.import │ │ ├── uuid.gd │ │ └── uuid.gd.uid ├── inventory_editor │ ├── InventoryEditor.gd │ ├── InventoryEditor.gd.uid │ ├── InventoryEditor.tscn │ ├── InventoryInspectorPluginEditorInventory.gd │ ├── InventoryInspectorPluginEditorInventory.gd.uid │ ├── InventoryInspectorPluginEditorItem.gd │ ├── InventoryInspectorPluginEditorItem.gd.uid │ ├── InventoryInspectorPluginEditorType.gd │ ├── InventoryInspectorPluginEditorType.gd.uid │ ├── InventoryInspectorPluginItem.gd │ ├── InventoryInspectorPluginItem.gd.uid │ ├── InventoryItem2D.gd │ ├── InventoryItem2D.gd.uid │ ├── InventoryItem3D.gd │ ├── InventoryItem3D.gd.uid │ ├── InventoryManager.gd │ ├── InventoryManager.gd.uid │ ├── InventoryManagerInventories.gd │ ├── InventoryManagerInventories.gd.uid │ ├── InventorySave.res │ ├── default │ │ ├── fonts │ │ │ ├── Pangolin-Regular.ttf │ │ │ └── Pangolin-Regular.ttf.import │ │ └── styles │ │ │ └── style_base.tres │ ├── icons │ │ ├── Add.png │ │ ├── Add.png.import │ │ ├── Copy.png │ │ ├── Copy.png.import │ │ ├── Copy.png~ │ │ ├── Craft.png │ │ ├── Craft.png.import │ │ ├── Craft.png~ │ │ ├── Del.png │ │ ├── Del.png.import │ │ ├── File.png │ │ ├── File.png.import │ │ ├── Ingredient.png │ │ ├── Ingredient.png.import │ │ ├── Ingredient.png~ │ │ ├── Inventory.png │ │ ├── Inventory.png.import │ │ ├── Inventory.png~ │ │ ├── Item.png │ │ ├── Item.png.import │ │ ├── Item.png~ │ │ ├── ItemControl.png │ │ ├── ItemControl.png.import │ │ ├── Put.png │ │ ├── Put.png.import │ │ ├── Recipe.png │ │ ├── Recipe.png.import │ │ ├── Recipe.png~ │ │ ├── Save.png │ │ ├── Save.png.import │ │ ├── Trash.png │ │ ├── Trash.png.import │ │ ├── Type.png │ │ ├── Type.png.import │ │ └── Type.png~ │ ├── model │ │ ├── InventoryData.gd │ │ ├── InventoryData.gd.uid │ │ ├── InventoryInventory.gd │ │ ├── InventoryInventory.gd.uid │ │ ├── InventoryItem.gd │ │ ├── InventoryItem.gd.uid │ │ ├── InventoryRecipe.gd │ │ ├── InventoryRecipe.gd.uid │ │ ├── InventoryType.gd │ │ └── InventoryType.gd.uid │ ├── plugin.cfg │ ├── plugin.gd │ ├── plugin.gd.uid │ ├── scenes │ │ ├── craft │ │ │ ├── InventoryCraftData.gd │ │ │ ├── InventoryCraftData.gd.uid │ │ │ ├── InventoryCraftData.tscn │ │ │ ├── InventoryCraftDataIngredient.gd │ │ │ ├── InventoryCraftDataIngredient.gd.uid │ │ │ ├── InventoryCraftDataIngredient.tscn │ │ │ ├── InventoryCraftDataPath.gd │ │ │ ├── InventoryCraftDataPath.gd.uid │ │ │ ├── InventoryCraftDataPath.tscn │ │ │ ├── InventoryCraftDataPathScene.gd │ │ │ ├── InventoryCraftDataPathScene.gd.uid │ │ │ ├── InventoryCraftDataPathScene.tscn │ │ │ ├── InventoryCraftDataResourceDialogFile.tscn │ │ │ ├── InventoryCraftEditorView.gd │ │ │ ├── InventoryCraftEditorView.gd.uid │ │ │ ├── InventoryCraftEditorView.tscn │ │ │ ├── InventoryCraftRecipeUI.gd │ │ │ ├── InventoryCraftRecipeUI.gd.uid │ │ │ ├── InventoryCraftRecipeUI.tscn │ │ │ ├── InventoryCraftRecipes.gd │ │ │ ├── InventoryCraftRecipes.gd.uid │ │ │ └── InventoryCraftRecipes.tscn │ │ ├── inventories │ │ │ ├── InventoryInventories.gd │ │ │ ├── InventoryInventories.gd.uid │ │ │ ├── InventoryInventories.tscn │ │ │ ├── InventoryInventoriesEditorView.gd │ │ │ ├── InventoryInventoriesEditorView.gd.uid │ │ │ ├── InventoryInventoriesEditorView.tscn │ │ │ ├── InventoryInventoryData.gd │ │ │ ├── InventoryInventoryData.gd.uid │ │ │ ├── InventoryInventoryData.tscn │ │ │ ├── InventoryInventoryDataPath.gd │ │ │ ├── InventoryInventoryDataPath.gd.uid │ │ │ ├── InventoryInventoryDataPath.tscn │ │ │ ├── InventoryInventoryDataPathScene.gd │ │ │ ├── InventoryInventoryDataPathScene.gd.uid │ │ │ ├── InventoryInventoryDataPathScene.tscn │ │ │ ├── InventoryInventoryPreview.gd │ │ │ ├── InventoryInventoryPreview.gd.uid │ │ │ ├── InventoryInventoryPreview.tscn │ │ │ ├── InventoryInventoryUI.gd │ │ │ ├── InventoryInventoryUI.gd.uid │ │ │ └── InventoryInventoryUI.tscn │ │ └── items │ │ │ ├── InventoryItemData.gd │ │ │ ├── InventoryItemData.gd.uid │ │ │ ├── InventoryItemData.tscn │ │ │ ├── InventoryItemDataPath.gd │ │ │ ├── InventoryItemDataPath.gd.uid │ │ │ ├── InventoryItemDataPath.tscn │ │ │ ├── InventoryItemDataPathScene.gd │ │ │ ├── InventoryItemDataPathScene.gd.uid │ │ │ ├── InventoryItemDataPathScene.tscn │ │ │ ├── InventoryItemDataProperty.gd │ │ │ ├── InventoryItemDataProperty.gd.uid │ │ │ ├── InventoryItemDataProperty.tscn │ │ │ ├── InventoryItemPreview3D.tscn │ │ │ ├── InventoryItemUI.gd │ │ │ ├── InventoryItemUI.gd.uid │ │ │ ├── InventoryItemUI.tscn │ │ │ ├── InventoryItems.gd │ │ │ ├── InventoryItems.gd.uid │ │ │ ├── InventoryItems.tscn │ │ │ ├── InventoryItemsEditorView.gd │ │ │ ├── InventoryItemsEditorView.gd.uid │ │ │ ├── InventoryItemsEditorView.tscn │ │ │ ├── InventoryTypeData.gd │ │ │ ├── InventoryTypeData.gd.uid │ │ │ ├── InventoryTypeData.tscn │ │ │ ├── InventoryTypeDataPath.gd │ │ │ ├── InventoryTypeDataPath.gd.uid │ │ │ ├── InventoryTypeDataPath.tscn │ │ │ ├── InventoryTypeUI.gd │ │ │ ├── InventoryTypeUI.gd.uid │ │ │ ├── InventoryTypeUI.tscn │ │ │ ├── InventoryTypes.gd │ │ │ ├── InventoryTypes.gd.uid │ │ │ ├── InventoryTypes.tscn │ │ │ ├── InventoryTypesEditorView.gd │ │ │ ├── InventoryTypesEditorView.gd.uid │ │ │ └── InventoryTypesEditorView.tscn │ ├── test │ │ ├── MainTest.gd │ │ ├── MainTest.gd.uid │ │ ├── MainTest.tscn │ │ ├── model │ │ │ ├── TestInventoryInventories.gd │ │ │ ├── TestInventoryInventories.gd.uid │ │ │ └── TestInventoryInventories.tscn │ │ └── test_model │ │ │ ├── UnitTest.gd │ │ │ ├── UnitTest.gd.uid │ │ │ └── icons │ │ │ ├── Fail.svg │ │ │ ├── Fail.svg.import │ │ │ ├── Success.svg │ │ │ └── Success.svg.import │ ├── ui │ │ ├── InventoryInventoryUI.gd │ │ ├── InventoryInventoryUI.gd.uid │ │ ├── InventoryItemUI.gd │ │ ├── InventoryItemUI.gd.uid │ │ ├── InventoryItemUIIcon.gd │ │ ├── InventoryItemUIIcon.gd.uid │ │ ├── InventoryItemUIIcon.tscn │ │ ├── PopupDescription.gd │ │ ├── PopupDescription.gd.uid │ │ └── PopupDescription.tscn │ └── uuid │ │ ├── .gitattributes │ │ ├── LICENSE │ │ ├── README.md │ │ ├── logo.png │ │ ├── logo.png.import │ │ ├── logo.svg │ │ ├── logo.svg.import │ │ ├── uuid.gd │ │ └── uuid.gd.uid ├── localization_editor │ ├── LocalizationEditor.gd │ ├── LocalizationEditor.gd.uid │ ├── LocalizationEditor.tscn │ ├── LocalizationEditorDialogFile.tscn │ ├── LocalizationManager.gd │ ├── LocalizationManager.gd.uid │ ├── icons │ │ ├── Add.png~ │ │ ├── Add.svg │ │ ├── Add.svg.import │ │ ├── Amazon.png │ │ ├── Amazon.png.import │ │ ├── Audio.svg │ │ ├── Audio.svg.import │ │ ├── Cancel.png~ │ │ ├── Cancel.svg │ │ ├── Cancel.svg.import │ │ ├── Close.png~ │ │ ├── Close.svg │ │ ├── Close.svg.import │ │ ├── DeepL.png │ │ ├── DeepL.png.import │ │ ├── Del.png~ │ │ ├── Del.svg │ │ ├── Del.svg.import │ │ ├── Down.png~ │ │ ├── Export.png~ │ │ ├── Export.svg │ │ ├── Export.svg.import │ │ ├── File.png~ │ │ ├── File.svg │ │ ├── File.svg.import │ │ ├── Google.png │ │ ├── Google.png.import │ │ ├── Image.png~ │ │ ├── Image.svg │ │ ├── Image.svg.import │ │ ├── Key.png~ │ │ ├── Locales.png~ │ │ ├── Locales.svg │ │ ├── Locales.svg.import │ │ ├── Localization.png~ │ │ ├── Localization.svg │ │ ├── Localization.svg.import │ │ ├── Microsoft.png │ │ ├── Microsoft.png.import │ │ ├── Open.png~ │ │ ├── Open.svg │ │ ├── Open.svg.import │ │ ├── Placeholders.png~ │ │ ├── Placeholders.svg │ │ ├── Placeholders.svg.import │ │ ├── Play.png~ │ │ ├── Pseudolocalization.svg │ │ ├── Pseudolocalization.svg.import │ │ ├── Put.png~ │ │ ├── Put.svg │ │ ├── Put.svg.import │ │ ├── Remaps.png~ │ │ ├── Remaps.svg │ │ ├── Remaps.svg.import │ │ ├── Save.png~ │ │ ├── Save.svg │ │ ├── Save.svg.import │ │ ├── Text.png~ │ │ ├── Translate.png~ │ │ ├── Translation.png~ │ │ ├── Translation.svg │ │ ├── Translation.svg.import │ │ ├── Trash.png~ │ │ ├── Up.png~ │ │ ├── Video.svg │ │ ├── Video.svg.import │ │ ├── Yandex.png │ │ ├── Yandex.png.import │ │ └── yandex.png~ │ ├── model │ │ ├── LocalizationData.gd │ │ ├── LocalizationData.gd.uid │ │ ├── LocalizationLocaleSingle.gd │ │ ├── LocalizationLocaleSingle.gd.uid │ │ ├── LocalizationLocalesList.gd │ │ ├── LocalizationLocalesList.gd.uid │ │ ├── LocalizationPlaceholdersData.gd │ │ ├── LocalizationPlaceholdersData.gd.uid │ │ ├── LocalizationSave.gd │ │ └── LocalizationSave.gd.uid │ ├── plugin.cfg │ ├── plugin.gd │ ├── plugin.gd.uid │ ├── scenes │ │ ├── auto_translate │ │ │ ├── LocalizationAutoTranslateEditorView.gd │ │ │ ├── LocalizationAutoTranslateEditorView.gd.uid │ │ │ ├── LocalizationAutoTranslateEditorView.tscn │ │ │ └── translator │ │ │ │ ├── LocalizationAutoTranslate.gd │ │ │ │ ├── LocalizationAutoTranslate.gd.uid │ │ │ │ ├── LocalizationAutoTranslate.tscn │ │ │ │ ├── LocalizationAutoTranslateAmazon.gd │ │ │ │ ├── LocalizationAutoTranslateAmazon.gd.uid │ │ │ │ ├── LocalizationAutoTranslateDeepL.gd │ │ │ │ ├── LocalizationAutoTranslateDeepL.gd.uid │ │ │ │ ├── LocalizationAutoTranslateGoogle.gd │ │ │ │ ├── LocalizationAutoTranslateGoogle.gd.uid │ │ │ │ ├── LocalizationAutoTranslateMicrosoft.gd │ │ │ │ ├── LocalizationAutoTranslateMicrosoft.gd.uid │ │ │ │ ├── LocalizationAutoTranslateYandex.gd │ │ │ │ └── LocalizationAutoTranslateYandex.gd.uid │ │ ├── locales │ │ │ ├── LocalizationLocale.gd │ │ │ ├── LocalizationLocale.gd.uid │ │ │ ├── LocalizationLocale.tscn │ │ │ ├── LocalizationLocales.gd │ │ │ ├── LocalizationLocales.gd.uid │ │ │ ├── LocalizationLocales.tscn │ │ │ ├── LocalizationLocalesEditorView.gd │ │ │ ├── LocalizationLocalesEditorView.gd.uid │ │ │ ├── LocalizationLocalesEditorView.tscn │ │ │ ├── LocalizationLocalesFilter.gd │ │ │ ├── LocalizationLocalesFilter.gd.uid │ │ │ └── LocalizationLocalesFilter.tscn │ │ ├── placeholders │ │ │ ├── LocalizationPlaceholder.gd │ │ │ ├── LocalizationPlaceholder.gd.uid │ │ │ ├── LocalizationPlaceholder.tscn │ │ │ ├── LocalizationPlaceholders.gd │ │ │ ├── LocalizationPlaceholders.gd.uid │ │ │ ├── LocalizationPlaceholders.tscn │ │ │ ├── LocalizationPlaceholdersEditorView.gd │ │ │ ├── LocalizationPlaceholdersEditorView.gd.uid │ │ │ ├── LocalizationPlaceholdersEditorView.tscn │ │ │ ├── LocalizationPlaceholdersHead.gd │ │ │ ├── LocalizationPlaceholdersHead.gd.uid │ │ │ ├── LocalizationPlaceholdersHead.tscn │ │ │ ├── LocalizationPlaceholdersKey.gd │ │ │ ├── LocalizationPlaceholdersKey.gd.uid │ │ │ ├── LocalizationPlaceholdersKey.tscn │ │ │ ├── LocalizationPlaceholdersKeys.gd │ │ │ ├── LocalizationPlaceholdersKeys.gd.uid │ │ │ ├── LocalizationPlaceholdersKeys.tscn │ │ │ ├── LocalizationPlaceholdersList.gd │ │ │ ├── LocalizationPlaceholdersList.gd.uid │ │ │ └── LocalizationPlaceholdersList.tscn │ │ ├── pseudolocalization │ │ │ ├── LocalizationPseudolocalizationEditorView.gd │ │ │ ├── LocalizationPseudolocalizationEditorView.gd.uid │ │ │ ├── LocalizationPseudolocalizationEditorView.tscn │ │ │ ├── control │ │ │ │ ├── LocalizationPseudolocalizationControl.gd │ │ │ │ ├── LocalizationPseudolocalizationControl.gd.uid │ │ │ │ ├── LocalizationPseudolocalizationControl.tscn │ │ │ │ ├── LocalizationPseudolocalizationUI.gd │ │ │ │ ├── LocalizationPseudolocalizationUI.gd.uid │ │ │ │ └── LocalizationPseudolocalizationUI.tscn │ │ │ └── ui │ │ │ │ ├── LocalizationPseudolocalizationForUI.gd │ │ │ │ ├── LocalizationPseudolocalizationForUI.gd.uid │ │ │ │ ├── LocalizationPseudolocalizationForUI.tscn │ │ │ │ └── LocalizationPseudolocalizationWindow.tscn │ │ ├── remaps │ │ │ ├── LocalizationRemap.gd │ │ │ ├── LocalizationRemap.gd.uid │ │ │ ├── LocalizationRemap.tscn │ │ │ ├── LocalizationRemapDialogFile.tscn │ │ │ ├── LocalizationRemapDialogImage.tscn │ │ │ ├── LocalizationRemapDialogVideo.tscn │ │ │ ├── LocalizationRemapPath.gd │ │ │ ├── LocalizationRemapPath.gd.uid │ │ │ ├── LocalizationRemapPath.tscn │ │ │ ├── LocalizationRemaps.gd │ │ │ ├── LocalizationRemaps.gd.uid │ │ │ ├── LocalizationRemaps.tscn │ │ │ ├── LocalizationRemapsEditorView.gd │ │ │ ├── LocalizationRemapsEditorView.gd.uid │ │ │ ├── LocalizationRemapsEditorView.tscn │ │ │ ├── LocalizationRemapsHead.gd │ │ │ ├── LocalizationRemapsHead.gd.uid │ │ │ ├── LocalizationRemapsHead.tscn │ │ │ ├── LocalizationRemapsKey.gd │ │ │ ├── LocalizationRemapsKey.gd.uid │ │ │ ├── LocalizationRemapsKey.tscn │ │ │ ├── LocalizationRemapsKeys.gd │ │ │ ├── LocalizationRemapsKeys.gd.uid │ │ │ ├── LocalizationRemapsKeys.tscn │ │ │ ├── LocalizationRemapsKeysHead.gd │ │ │ ├── LocalizationRemapsKeysHead.gd.uid │ │ │ ├── LocalizationRemapsKeysHead.tscn │ │ │ ├── LocalizationRemapsList.gd │ │ │ ├── LocalizationRemapsList.gd.uid │ │ │ └── LocalizationRemapsList.tscn │ │ └── translations │ │ │ ├── LocalizationTranslation.gd │ │ │ ├── LocalizationTranslation.gd.uid │ │ │ ├── LocalizationTranslation.tscn │ │ │ ├── LocalizationTranslations.gd │ │ │ ├── LocalizationTranslations.gd.uid │ │ │ ├── LocalizationTranslations.tscn │ │ │ ├── LocalizationTranslationsEditorView.gd │ │ │ ├── LocalizationTranslationsEditorView.gd.uid │ │ │ ├── LocalizationTranslationsEditorView.tscn │ │ │ ├── LocalizationTranslationsHead.gd │ │ │ ├── LocalizationTranslationsHead.gd.uid │ │ │ ├── LocalizationTranslationsHead.tscn │ │ │ ├── LocalizationTranslationsKey.gd │ │ │ ├── LocalizationTranslationsKey.gd.uid │ │ │ ├── LocalizationTranslationsKey.tscn │ │ │ ├── LocalizationTranslationsKeys.gd │ │ │ ├── LocalizationTranslationsKeys.gd.uid │ │ │ ├── LocalizationTranslationsKeys.tscn │ │ │ ├── LocalizationTranslationsList.gd │ │ │ ├── LocalizationTranslationsList.gd.uid │ │ │ └── LocalizationTranslationsList.tscn │ └── uuid │ │ ├── .gitattributes │ │ ├── LICENSE │ │ ├── README.md │ │ ├── logo.png │ │ ├── logo.png.import │ │ ├── logo.svg │ │ ├── logo.svg.import │ │ ├── uuid.gd │ │ └── uuid.gd.uid ├── quest_editor │ ├── QuestEditor.gd │ ├── QuestEditor.gd.uid │ ├── QuestEditor.tscn │ ├── QuestInspectorPlugin.gd │ ├── QuestInspectorPlugin.gd.uid │ ├── QuestInspectorPluginNpc.gd │ ├── QuestInspectorPluginNpc.gd.uid │ ├── QuestManager.gd │ ├── QuestManager.gd.uid │ ├── QuestsSave.res │ ├── default │ │ └── fonts │ │ │ ├── Pangolin-Regular.ttf │ │ │ └── Pangolin-Regular.ttf.import │ ├── icons │ │ ├── Add.png │ │ ├── Add.png.import │ │ ├── Del.png │ │ ├── Del.png.import │ │ ├── Destination.png │ │ ├── Destination.png.import │ │ ├── Destination.png~ │ │ ├── Enemy.png │ │ ├── Enemy.png.import │ │ ├── Enemy.png~ │ │ ├── File.png │ │ ├── File.png.import │ │ ├── Item.png │ │ ├── Item.png.import │ │ ├── NPC.png │ │ ├── NPC.png.import │ │ ├── Player.png │ │ ├── Player.png.import │ │ ├── Player.png~ │ │ ├── Put.png │ │ ├── Put.png.import │ │ ├── Quest.png │ │ ├── Quest.png.import │ │ ├── Quest.png~ │ │ ├── QuestPath.png │ │ ├── QuestPath.png.import │ │ ├── QuestPath.png~ │ │ ├── Question.png │ │ ├── Question.png.import │ │ ├── Question.png~ │ │ ├── Save.png │ │ ├── Save.png.import │ │ ├── Trash.png │ │ ├── Trash.png.import │ │ ├── Trigger.png │ │ ├── Trigger.png.import │ │ ├── Trigger.png~ │ │ ├── Triggers.png │ │ ├── Triggers.png.import │ │ └── Triggers.png~ │ ├── model │ │ ├── QuestData.gd │ │ ├── QuestData.gd.uid │ │ ├── QuestQuest.gd │ │ ├── QuestQuest.gd.uid │ │ ├── QuestTrigger.gd │ │ └── QuestTrigger.gd.uid │ ├── plugin.cfg │ ├── plugin.gd │ ├── plugin.gd.uid │ ├── scenes │ │ ├── quests │ │ │ ├── QuestQuestData.gd │ │ │ ├── QuestQuestData.gd.uid │ │ │ ├── QuestQuestData.tscn │ │ │ ├── QuestQuestDataDelivery.gd │ │ │ ├── QuestQuestDataDelivery.gd.uid │ │ │ ├── QuestQuestDataDelivery.tscn │ │ │ ├── QuestQuestDataNameDescription.gd │ │ │ ├── QuestQuestDataNameDescription.gd.uid │ │ │ ├── QuestQuestDataNameDescription.tscn │ │ │ ├── QuestQuestDataRequerements.gd │ │ │ ├── QuestQuestDataRequerements.gd.uid │ │ │ ├── QuestQuestDataRequerements.tscn │ │ │ ├── QuestQuestDataRequerementsView.gd │ │ │ ├── QuestQuestDataRequerementsView.gd.uid │ │ │ ├── QuestQuestDataRequerementsView.tscn │ │ │ ├── QuestQuestDataRequerementsViewItem.gd │ │ │ ├── QuestQuestDataRequerementsViewItem.gd.uid │ │ │ ├── QuestQuestDataRequerementsViewItem.tscn │ │ │ ├── QuestQuestDataRewards.gd │ │ │ ├── QuestQuestDataRewards.gd.uid │ │ │ ├── QuestQuestDataRewards.tscn │ │ │ ├── QuestQuestDataRewardsView.gd │ │ │ ├── QuestQuestDataRewardsView.gd.uid │ │ │ ├── QuestQuestDataRewardsView.tscn │ │ │ ├── QuestQuestDataRewardsViewItem.gd │ │ │ ├── QuestQuestDataRewardsViewItem.gd.uid │ │ │ ├── QuestQuestDataRewardsViewItem.tscn │ │ │ ├── QuestQuestDataStart.gd │ │ │ ├── QuestQuestDataStart.gd.uid │ │ │ ├── QuestQuestDataStart.tscn │ │ │ ├── QuestQuestDataTasks.gd │ │ │ ├── QuestQuestDataTasks.gd.uid │ │ │ ├── QuestQuestDataTasks.tscn │ │ │ ├── QuestQuestDataTasksView.gd │ │ │ ├── QuestQuestDataTasksView.gd.uid │ │ │ ├── QuestQuestDataTasksView.tscn │ │ │ ├── QuestQuestDataTasksViewItem.gd │ │ │ ├── QuestQuestDataTasksViewItem.gd.uid │ │ │ ├── QuestQuestDataTasksViewItem.tscn │ │ │ ├── QuestQuestUI.gd │ │ │ ├── QuestQuestUI.gd.uid │ │ │ ├── QuestQuestUI.tscn │ │ │ ├── QuestQuests.gd │ │ │ ├── QuestQuests.gd.uid │ │ │ ├── QuestQuests.tscn │ │ │ ├── QuestQuestsEditorView.gd │ │ │ ├── QuestQuestsEditorView.gd.uid │ │ │ └── QuestQuestsEditorView.tscn │ │ └── triggers │ │ │ ├── QuestTriggerData.gd │ │ │ ├── QuestTriggerData.gd.uid │ │ │ ├── QuestTriggerData.tscn │ │ │ ├── QuestTriggerPath.gd │ │ │ ├── QuestTriggerPath.gd.uid │ │ │ ├── QuestTriggerPath.tscn │ │ │ ├── QuestTriggerPathDialog.tscn │ │ │ ├── QuestTriggerUI.gd │ │ │ ├── QuestTriggerUI.gd.uid │ │ │ ├── QuestTriggerUI.tscn │ │ │ ├── QuestTriggers.gd │ │ │ ├── QuestTriggers.gd.uid │ │ │ ├── QuestTriggers.tscn │ │ │ ├── QuestTriggersEditorView.gd │ │ │ ├── QuestTriggersEditorView.gd.uid │ │ │ └── QuestTriggersEditorView.tscn │ ├── ui │ │ ├── QuestWatcher.gd │ │ ├── QuestWatcher.gd.uid │ │ ├── QuestWatcher.tscn │ │ ├── QuestWatcherDelivery.gd │ │ ├── QuestWatcherDelivery.gd.uid │ │ ├── QuestWatcherDelivery.tscn │ │ ├── QuestWatcherTask.gd │ │ ├── QuestWatcherTask.gd.uid │ │ └── QuestWatcherTask.tscn │ ├── use │ │ ├── 2d │ │ │ ├── QuestDestination2D.gd │ │ │ ├── QuestDestination2D.gd.uid │ │ │ ├── QuestEnemy2D.gd │ │ │ ├── QuestEnemy2D.gd.uid │ │ │ ├── QuestNpc2D.gd │ │ │ ├── QuestNpc2D.gd.uid │ │ │ ├── QuestPlayer2D.gd │ │ │ ├── QuestPlayer2D.gd.uid │ │ │ ├── QuestTrigger2D.gd │ │ │ └── QuestTrigger2D.gd.uid │ │ └── 3d │ │ │ ├── QuestBase3D.gd │ │ │ ├── QuestBase3D.gd.uid │ │ │ ├── QuestDestination3D.gd │ │ │ ├── QuestDestination3D.gd.uid │ │ │ ├── QuestEnemy3D.gd │ │ │ ├── QuestEnemy3D.gd.uid │ │ │ ├── QuestNpc3D.gd │ │ │ ├── QuestNpc3D.gd.uid │ │ │ ├── QuestPlayer3D.gd │ │ │ ├── QuestPlayer3D.gd.uid │ │ │ ├── QuestTrigger3D.gd │ │ │ └── QuestTrigger3D.gd.uid │ └── uuid │ │ ├── .gitattributes │ │ ├── LICENSE │ │ ├── README.md │ │ ├── logo.png │ │ ├── logo.png.import │ │ ├── logo.svg │ │ ├── logo.svg.import │ │ ├── uuid.gd │ │ └── uuid.gd.uid └── ui_extensions │ └── dropdown │ ├── Arrow.svg │ ├── Arrow.svg.import │ ├── Cancel.svg │ ├── Cancel.svg.import │ ├── Dropdown.gd │ ├── Dropdown.gd.uid │ ├── Dropdown.tscn │ ├── DropdownItem.gd │ └── DropdownItem.gd.uid ├── dialogue ├── DialogueDialogues.gd ├── DialogueDialogues.gd.uid ├── DialogueEvents.gd └── DialogueEvents.gd.uid ├── icon.png ├── icon.png.import ├── inventory ├── InventoryManagerInventory.gd ├── InventoryManagerInventory.gd.uid ├── InventoryManagerItem.gd └── InventoryManagerItem.gd.uid ├── localization ├── LocalizationKeys.gd ├── LocalizationKeys.gd.uid ├── LocalizationPlaceholders.gd ├── LocalizationPlaceholders.gd.uid ├── Placeholders.tres ├── localizations.csv ├── localizations.csv.import ├── localizations.de.translation ├── localizations.en.translation └── localizations.ru.translation ├── project.godot ├── quest ├── QuestManagerQuests.gd ├── QuestManagerQuests.gd.uid ├── QuestManagerTriggers.gd └── QuestManagerTriggers.gd.uid └── quest_example ├── 2d ├── Item.gd ├── Item.gd.uid ├── Level.gd ├── Level.gd.uid ├── Level.tscn ├── actors │ ├── Destination.tscn │ ├── Enemy.tscn │ ├── Girl.gd │ ├── Girl.gd.uid │ ├── Girl.tscn │ ├── Item.tscn │ ├── ItemBig.tscn │ ├── John.gd │ ├── John.gd.uid │ ├── John.tscn │ ├── Trigger.gd │ ├── Trigger.gd.uid │ ├── Trigger.tscn │ └── Weapon.tscn └── player │ ├── Player.gd │ ├── Player.gd.uid │ └── Player.tscn ├── 3d ├── Item.gd ├── Item.gd.uid ├── Level.gd ├── Level.gd.uid ├── Level.tscn ├── actors │ ├── Destination.tscn │ ├── Enemy.tscn │ ├── Girl.gd │ ├── Girl.gd.uid │ ├── Girl.tscn │ ├── Item.tscn │ ├── ItemBig.tscn │ ├── John.gd │ ├── John.gd.uid │ ├── John.tscn │ ├── Trigger.gd │ ├── Trigger.gd.uid │ ├── Trigger.tscn │ └── Weapon.tscn ├── models │ ├── Black.material │ ├── BladeMat.material │ ├── Blue.material │ ├── Brown.material │ ├── DestGripMat.material │ ├── GlasMat.material │ ├── Green.material │ ├── HealthMat.material │ ├── ManaMat.material │ ├── Orange.material │ ├── Pink.material │ ├── Red.material │ ├── White.material │ ├── White_001.material │ ├── WoodMat.material │ ├── Yellow.material │ ├── godotAttention.blend │ ├── godotAttention.blend.import │ ├── godotAttention.blend1 │ ├── godotAttention.glb │ ├── godotAttention.glb.import │ ├── godotBoy.blend │ ├── godotBoy.blend.import │ ├── godotBoy.glb │ ├── godotBoy.glb.import │ ├── godotDestination.blend │ ├── godotDestination.blend.import │ ├── godotDestination.blend1 │ ├── godotDestination.glb │ ├── godotDestination.glb.import │ ├── godotEnemy.blend │ ├── godotEnemy.blend.import │ ├── godotEnemy.blend1 │ ├── godotEnemy.glb │ ├── godotEnemy.glb.import │ ├── godotGirl.blend │ ├── godotGirl.blend.import │ ├── godotGirl.blend1 │ ├── godotGirl.glb │ ├── godotGirl.glb.import │ ├── godotItem.glb │ ├── godotItem.glb.import │ ├── godotItemBig.glb │ ├── godotItemBig.glb.import │ ├── godotJohn.blend │ ├── godotJohn.blend.import │ ├── godotJohn.blend1 │ ├── godotJohn.glb │ ├── godotJohn.glb.import │ ├── godotPlate.glb │ ├── godotPlate.glb.import │ ├── godotTree.blend │ ├── godotTree.blend.import │ ├── godotTree.blend1 │ ├── godotTree.glb │ ├── godotTree.glb.import │ ├── godotTrigger.blend │ ├── godotTrigger.blend.import │ ├── godotTrigger.blend1 │ ├── godotTrigger.glb │ ├── godotTrigger.glb.import │ ├── godotWeapon.blend │ ├── godotWeapon.blend.import │ ├── godotWeapon.blend1 │ ├── godotWeapon.glb │ ├── godotWeapon.glb.import │ ├── potions.blend │ ├── potions.blend.import │ └── potions.blend1 └── player │ ├── Player.gd │ ├── Player.gd.uid │ └── Player.tscn ├── inventory_ui ├── InventoryUI.gd ├── InventoryUI.gd.uid ├── InventoryUI.tscn ├── ItemUI.gd ├── ItemUI.gd.uid └── ItemUI.tscn ├── quest_ui ├── QuestUi.gd ├── QuestUi.gd.uid └── QuestUi.tscn └── textures ├── Attention.png ├── Attention.png.import ├── Background.png ├── Background.png.import ├── BackgroundLeft.png ├── BackgroundLeft.png.import ├── BackgroundRight.png ├── BackgroundRight.png.import ├── BackgroundSide.png ├── BackgroundSide.png.import ├── Chest.png ├── Chest.png.import ├── Destination.png ├── Destination.png.import ├── Destination.png~ ├── Enemy.png ├── Enemy.png.import ├── Enemy.png~ ├── Fir.png ├── Fir.png.import ├── Girl.png ├── Girl.png.import ├── InventoryBackground.png ├── InventoryBackground.png.import ├── InventoryBackgroundItem.png ├── InventoryBackgroundItem.png.import ├── Item.png ├── Item.png.import ├── ItemBig.png ├── ItemBig.png.import ├── John.png ├── John.png.import ├── John.png~ ├── Player.png ├── Player.png.import ├── Player.png~ ├── Potions.png ├── Potions.png.import ├── Quest.png ├── Quest.png.import ├── Quest.png~ ├── QuestNow.png ├── QuestNow.png.import ├── QuestNow.png~ ├── Sword.png ├── Sword.png.import ├── Trigger.png ├── Trigger.png.import └── Trigger.png~ /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Godot 4+ specific ignores 2 | .godot/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/README.md -------------------------------------------------------------------------------- /addons/dialogue_editor/DialogueDialogue2D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/DialogueDialogue2D.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/DialogueDialogue2D.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b5p4ck6xs703y 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/DialogueDialogue3D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/DialogueDialogue3D.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/DialogueDialogue3D.gd.uid: -------------------------------------------------------------------------------- 1 | uid://87jry1y2tqcn 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/DialogueEditor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/DialogueEditor.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/DialogueEditor.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dogc1icsa44q6 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/DialogueEditor.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/DialogueEditor.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/DialogueManager.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/DialogueManager.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/DialogueManager.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ytsansc4anck 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/DialogueSave.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/DialogueSave.res -------------------------------------------------------------------------------- /addons/dialogue_editor/default/DialogueActorCenter.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/default/DialogueActorCenter.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/default/DialogueActorLeft.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/default/DialogueActorLeft.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/default/DialogueActorRight.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/default/DialogueActorRight.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/default/fonts/Pangolin-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/default/fonts/Pangolin-Regular.ttf -------------------------------------------------------------------------------- /addons/dialogue_editor/default/fonts/Pangolin-Regular.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/default/fonts/Pangolin-Regular.ttf.import -------------------------------------------------------------------------------- /addons/dialogue_editor/default/styles/style_base.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/default/styles/style_base.tres -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Actor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Actor.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Actor.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Actor.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Add.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Add.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Add.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Bricks.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Bricks.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Bricks.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Bricks.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Bricks.png~ -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Copy.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Copy.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Copy.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Del.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Del.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Del.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Dialogue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Dialogue.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Dialogue.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Dialogue.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Event.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Event.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Event.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Event.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Event.png~ -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/EventEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/EventEmpty.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/EventEmpty.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/EventEmpty.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/EventEmpty.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/EventEmpty.png~ -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/File.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/File.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/File.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Image.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Image.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Image.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Node.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Node.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Node.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Node.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Node.png~ -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Nodes.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Nodes.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Nodes.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Play.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Play.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Play.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Play.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Play.png~ -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Put.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Put.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Put.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Put.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Save.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Save.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Save.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Scene.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Scene.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Scene.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Scene.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Scene.png~ -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Sentence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Sentence.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Sentence.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Sentence.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Trash.png -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Trash.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Trash.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/icons/Trash.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/icons/Trash.png~ -------------------------------------------------------------------------------- /addons/dialogue_editor/inspectors/DialogueMangerDialoguesInspectorPlugin.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bd182er46r3x8 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/inspectors/DialogueMangerDialoguesInspectorPluginEditor.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b73ab2k2dhpvm 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/model/DialogueActor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/model/DialogueActor.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/model/DialogueActor.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bx2mr4npc8vrj 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/model/DialogueData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/model/DialogueData.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/model/DialogueData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://s08lkcmxijbx 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/model/DialogueDialog.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/model/DialogueDialog.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/model/DialogueDialog.gd.uid: -------------------------------------------------------------------------------- 1 | uid://btopjdt75s82b 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/model/DialogueDialogue.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/model/DialogueDialogue.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/model/DialogueDialogue.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ck3dukbktppxx 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/model/DialogueEmpty.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/model/DialogueEmpty.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/model/DialogueEmpty.gd.uid: -------------------------------------------------------------------------------- 1 | uid://x8yei8pp3pf3 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/model/DialogueNode.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/model/DialogueNode.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/model/DialogueNode.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c7qeoxl4hqgu6 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/model/DialogueSentence.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/model/DialogueSentence.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/model/DialogueSentence.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d3b2a5krnclts 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/plugin.cfg -------------------------------------------------------------------------------- /addons/dialogue_editor/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/plugin.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/plugin.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cod8umnrh4mx2 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActorData.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cpyx7l3aii4ym 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorData.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActorData.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorDataPath.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActorDataPath.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorDataPath.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d1m5cmdx42uus 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorDataPath.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActorDataPath.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorDataResource.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActorDataResource.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorDataResource.gd.uid: -------------------------------------------------------------------------------- 1 | uid://nemceinka5ci 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorDataResource.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActorDataResource.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorDataTexture.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActorDataTexture.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorDataTexture.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ub4alpgy4y42 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorDataTexture.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActorDataTexture.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActorUI.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorUI.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bh8hgd3g72gt7 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorUI.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActorUI.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActors.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActors.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActors.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dgki7u8arhwhv 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActors.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActors.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorsEditorView.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActorsEditorView.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorsEditorView.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c1r6gsgsfjojt 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/actors/DialogueActorsEditorView.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/actors/DialogueActorsEditorView.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/DialogueDialogueUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/dialogues/DialogueDialogueUI.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/DialogueDialogueUI.gd.uid: -------------------------------------------------------------------------------- 1 | uid://w5sjf46ltmas 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/DialogueDialogueUI.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/dialogues/DialogueDialogueUI.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/DialogueDialogues.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/dialogues/DialogueDialogues.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/DialogueDialogues.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bxgker7mjchcn 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/DialogueDialogues.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/dialogues/DialogueDialogues.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/DialogueDialoguesEditorView.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ceqfla2t7napa 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/DialogueDialoguesPlayer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/dialogues/DialogueDialoguesPlayer.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/DialogueDialoguesPlayer.gd.uid: -------------------------------------------------------------------------------- 1 | uid://38ebswyt5tnq 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/DialogueDialoguesPlayer.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/dialogues/DialogueDialoguesPlayer.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/DialogueEditors.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/dialogues/DialogueEditors.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/DialogueEditors.gd.uid: -------------------------------------------------------------------------------- 1 | uid://datqumyuhnh8e 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/DialogueEditors.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/dialogues/DialogueEditors.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/nodes_view/DialogueNodesView.gd.uid: -------------------------------------------------------------------------------- 1 | uid://do4euu2wncju0 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/nodes_view/nodes/NodeBase.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/dialogues/nodes_view/nodes/NodeBase.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/nodes_view/nodes/NodeBase.gd.uid: -------------------------------------------------------------------------------- 1 | uid://q7f8esvmdkfg 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/nodes_view/nodes/node_end/NodeEnd.gd.uid: -------------------------------------------------------------------------------- 1 | uid://6nqh60oi5sbw 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/nodes_view/nodes/node_sentence/NodeSentence.gd.uid: -------------------------------------------------------------------------------- 1 | uid://huulq5o6g0e5 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/nodes_view/nodes/node_sentence/PanelSentence.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cid5fljmtmb5t 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/dialogues/nodes_view/nodes/node_start/NodeStart.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cgko1t2a6xgsd 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueScenePreview.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/scenes/DialogueScenePreview.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueScenePreview.gd.uid: -------------------------------------------------------------------------------- 1 | uid://gc1x6ahvdgeq 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueScenePreview.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/scenes/DialogueScenePreview.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueScenePreviewSentenceDialog.gd.uid: -------------------------------------------------------------------------------- 1 | uid://0bdspdj54pgk 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueScenePreviewSentenceDialogText.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d1bkkux3kg52u 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueSceneResourceFile.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/scenes/DialogueSceneResourceFile.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueSceneUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/scenes/DialogueSceneUI.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueSceneUI.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cp8t5ocri12k8 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueSceneUI.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/scenes/DialogueSceneUI.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueScenes.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/scenes/DialogueScenes.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueScenes.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dwmqvvs6j7e0u 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueScenes.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/scenes/DialogueScenes.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueScenesEditorView.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/scenes/DialogueScenesEditorView.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueScenesEditorView.gd.uid: -------------------------------------------------------------------------------- 1 | uid://blxynf727wf10 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueScenesEditorView.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/scenes/DialogueScenesEditorView.tscn -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueScenesVBox.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/scenes/scenes/DialogueScenesVBox.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueScenesVBox.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bqnh11nfx6nre 2 | -------------------------------------------------------------------------------- /addons/dialogue_editor/scenes/scenes/DialogueScenesVBox.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/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/Godot4QuestEditor/HEAD/addons/dialogue_editor/uuid/LICENSE -------------------------------------------------------------------------------- /addons/dialogue_editor/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/uuid/README.md -------------------------------------------------------------------------------- /addons/dialogue_editor/uuid/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/uuid/logo.png -------------------------------------------------------------------------------- /addons/dialogue_editor/uuid/logo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/uuid/logo.png.import -------------------------------------------------------------------------------- /addons/dialogue_editor/uuid/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/uuid/logo.svg -------------------------------------------------------------------------------- /addons/dialogue_editor/uuid/logo.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/uuid/logo.svg.import -------------------------------------------------------------------------------- /addons/dialogue_editor/uuid/uuid.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/dialogue_editor/uuid/uuid.gd -------------------------------------------------------------------------------- /addons/dialogue_editor/uuid/uuid.gd.uid: -------------------------------------------------------------------------------- 1 | uid://osr53g23t0xf 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryEditor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/InventoryEditor.gd -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryEditor.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dx3uyqv7x8u1n 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryEditor.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/InventoryEditor.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryInspectorPluginEditorInventory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/InventoryInspectorPluginEditorInventory.gd -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryInspectorPluginEditorInventory.gd.uid: -------------------------------------------------------------------------------- 1 | uid://djmkhkq5n2sx7 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryInspectorPluginEditorItem.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/InventoryInspectorPluginEditorItem.gd -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryInspectorPluginEditorItem.gd.uid: -------------------------------------------------------------------------------- 1 | uid://nmy3opbd8jkf 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryInspectorPluginEditorType.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/InventoryInspectorPluginEditorType.gd -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryInspectorPluginEditorType.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dfjbmp7t5bkpw 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryInspectorPluginItem.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/InventoryInspectorPluginItem.gd -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryInspectorPluginItem.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dlld68o0n2eoi 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryItem2D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/InventoryItem2D.gd -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryItem2D.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bquuogcnp1emo 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryItem3D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/InventoryItem3D.gd -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryItem3D.gd.uid: -------------------------------------------------------------------------------- 1 | uid://kswls7kklek4 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryManager.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/InventoryManager.gd -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryManager.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c2kf35a4e8ppo 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryManagerInventories.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/InventoryManagerInventories.gd -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryManagerInventories.gd.uid: -------------------------------------------------------------------------------- 1 | uid://0nwn6gt64km2 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/InventorySave.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/InventorySave.res -------------------------------------------------------------------------------- /addons/inventory_editor/default/fonts/Pangolin-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/default/fonts/Pangolin-Regular.ttf -------------------------------------------------------------------------------- /addons/inventory_editor/default/fonts/Pangolin-Regular.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/default/fonts/Pangolin-Regular.ttf.import -------------------------------------------------------------------------------- /addons/inventory_editor/default/styles/style_base.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/default/styles/style_base.tres -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Add.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Add.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Add.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Copy.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Copy.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Copy.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Copy.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Copy.png~ -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Craft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Craft.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Craft.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Craft.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Craft.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Craft.png~ -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Del.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Del.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Del.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/File.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/File.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/File.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Ingredient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Ingredient.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Ingredient.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Ingredient.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Ingredient.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Ingredient.png~ -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Inventory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Inventory.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Inventory.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Inventory.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Inventory.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Inventory.png~ -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Item.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Item.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Item.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Item.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Item.png~ -------------------------------------------------------------------------------- /addons/inventory_editor/icons/ItemControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/ItemControl.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/ItemControl.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/ItemControl.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Put.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Put.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Put.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Put.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Recipe.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Recipe.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Recipe.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Recipe.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Recipe.png~ -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Save.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Save.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Save.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Trash.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Trash.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Trash.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Type.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Type.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Type.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Type.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/icons/Type.png~ -------------------------------------------------------------------------------- /addons/inventory_editor/model/InventoryData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/model/InventoryData.gd -------------------------------------------------------------------------------- /addons/inventory_editor/model/InventoryData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ccdd5a4dcrs7p 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/model/InventoryInventory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/model/InventoryInventory.gd -------------------------------------------------------------------------------- /addons/inventory_editor/model/InventoryInventory.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dmt0x1exqns3t 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/model/InventoryItem.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/model/InventoryItem.gd -------------------------------------------------------------------------------- /addons/inventory_editor/model/InventoryItem.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b5y4fdgcek4tb 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/model/InventoryRecipe.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/model/InventoryRecipe.gd -------------------------------------------------------------------------------- /addons/inventory_editor/model/InventoryRecipe.gd.uid: -------------------------------------------------------------------------------- 1 | uid://brycsed7phs2y 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/model/InventoryType.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/model/InventoryType.gd -------------------------------------------------------------------------------- /addons/inventory_editor/model/InventoryType.gd.uid: -------------------------------------------------------------------------------- 1 | uid://4ujvlp5pb6ib 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/plugin.cfg -------------------------------------------------------------------------------- /addons/inventory_editor/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/plugin.gd -------------------------------------------------------------------------------- /addons/inventory_editor/plugin.gd.uid: -------------------------------------------------------------------------------- 1 | uid://6gk5qkplo4ic 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/craft/InventoryCraftData.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://de0nkfksirdsf 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftData.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/craft/InventoryCraftData.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftDataIngredient.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cuodfw481rgxv 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftDataPath.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/craft/InventoryCraftDataPath.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftDataPath.gd.uid: -------------------------------------------------------------------------------- 1 | uid://2vjp2wllp2pg 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftDataPath.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/craft/InventoryCraftDataPath.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftDataPathScene.gd.uid: -------------------------------------------------------------------------------- 1 | uid://chav371f3ebg0 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftEditorView.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/craft/InventoryCraftEditorView.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftEditorView.gd.uid: -------------------------------------------------------------------------------- 1 | uid://diw7y6ronbdfm 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftRecipeUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/craft/InventoryCraftRecipeUI.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftRecipeUI.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bbjgbiovgeaq5 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftRecipeUI.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/craft/InventoryCraftRecipeUI.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftRecipes.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/craft/InventoryCraftRecipes.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftRecipes.gd.uid: -------------------------------------------------------------------------------- 1 | uid://nhjebug0xdhc 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftRecipes.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/craft/InventoryCraftRecipes.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/inventories/InventoryInventories.gd.uid: -------------------------------------------------------------------------------- 1 | uid://djwgq161gjogd 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/inventories/InventoryInventoriesEditorView.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cwgnkuo85dpwa 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/inventories/InventoryInventoryData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://t1llpp0sa2ov 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/inventories/InventoryInventoryDataPath.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dmujdrilawg87 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/inventories/InventoryInventoryDataPathScene.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c4pkfhmhpdvi2 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/inventories/InventoryInventoryPreview.gd.uid: -------------------------------------------------------------------------------- 1 | uid://e2ptoc3ffiii 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/inventories/InventoryInventoryUI.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cqrwk2m6olfk7 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/items/InventoryItemData.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://eaq7kqb6msbp 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemData.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/items/InventoryItemData.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemDataPath.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/items/InventoryItemDataPath.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemDataPath.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dala2e8u3pahf 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemDataPath.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/items/InventoryItemDataPath.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemDataPathScene.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bp4e8jbhdbp4b 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemDataProperty.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/items/InventoryItemDataProperty.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemDataProperty.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cvtnnwc8vmldk 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemPreview3D.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/items/InventoryItemPreview3D.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/items/InventoryItemUI.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemUI.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dbnekhg2yqxnu 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemUI.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/items/InventoryItemUI.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItems.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/items/InventoryItems.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItems.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bmoctuvmhrxcn 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItems.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/items/InventoryItems.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemsEditorView.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/items/InventoryItemsEditorView.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemsEditorView.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b44yp3o2fym42 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryTypeData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/items/InventoryTypeData.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryTypeData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://w27ykjg3simy 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryTypeData.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/items/InventoryTypeData.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryTypeDataPath.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/items/InventoryTypeDataPath.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryTypeDataPath.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cqexld6ouqsfn 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryTypeDataPath.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/items/InventoryTypeDataPath.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryTypeUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/items/InventoryTypeUI.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryTypeUI.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dm8vhlygvxvcc 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryTypeUI.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/items/InventoryTypeUI.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryTypes.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/items/InventoryTypes.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryTypes.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b5c61jhj1uid5 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryTypes.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/items/InventoryTypes.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryTypesEditorView.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/scenes/items/InventoryTypesEditorView.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryTypesEditorView.gd.uid: -------------------------------------------------------------------------------- 1 | uid://lh8a6tc5tbxg 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/test/MainTest.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/test/MainTest.gd -------------------------------------------------------------------------------- /addons/inventory_editor/test/MainTest.gd.uid: -------------------------------------------------------------------------------- 1 | uid://infh3kbf6rus 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/test/MainTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/test/MainTest.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/test/model/TestInventoryInventories.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/test/model/TestInventoryInventories.gd -------------------------------------------------------------------------------- /addons/inventory_editor/test/model/TestInventoryInventories.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dt8fspgqo48b4 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/test/model/TestInventoryInventories.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/test/model/TestInventoryInventories.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/test/test_model/UnitTest.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/test/test_model/UnitTest.gd -------------------------------------------------------------------------------- /addons/inventory_editor/test/test_model/UnitTest.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b0h6fqa2rycvr 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/test/test_model/icons/Fail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/test/test_model/icons/Fail.svg -------------------------------------------------------------------------------- /addons/inventory_editor/test/test_model/icons/Fail.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/test/test_model/icons/Fail.svg.import -------------------------------------------------------------------------------- /addons/inventory_editor/test/test_model/icons/Success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/test/test_model/icons/Success.svg -------------------------------------------------------------------------------- /addons/inventory_editor/test/test_model/icons/Success.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/test/test_model/icons/Success.svg.import -------------------------------------------------------------------------------- /addons/inventory_editor/ui/InventoryInventoryUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/ui/InventoryInventoryUI.gd -------------------------------------------------------------------------------- /addons/inventory_editor/ui/InventoryInventoryUI.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c6tk06ue042g5 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/ui/InventoryItemUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/ui/InventoryItemUI.gd -------------------------------------------------------------------------------- /addons/inventory_editor/ui/InventoryItemUI.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b6q76dqt67n87 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/ui/InventoryItemUIIcon.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/ui/InventoryItemUIIcon.gd -------------------------------------------------------------------------------- /addons/inventory_editor/ui/InventoryItemUIIcon.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bo5orx63pl40q 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/ui/InventoryItemUIIcon.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/ui/InventoryItemUIIcon.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/ui/PopupDescription.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/ui/PopupDescription.gd -------------------------------------------------------------------------------- /addons/inventory_editor/ui/PopupDescription.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dxj6ap1ar6643 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/ui/PopupDescription.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/ui/PopupDescription.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/uuid/.gitattributes: -------------------------------------------------------------------------------- 1 | *.gd linguist-language=GDScript 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/uuid/LICENSE -------------------------------------------------------------------------------- /addons/inventory_editor/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/uuid/README.md -------------------------------------------------------------------------------- /addons/inventory_editor/uuid/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/uuid/logo.png -------------------------------------------------------------------------------- /addons/inventory_editor/uuid/logo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/uuid/logo.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/uuid/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/uuid/logo.svg -------------------------------------------------------------------------------- /addons/inventory_editor/uuid/logo.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/uuid/logo.svg.import -------------------------------------------------------------------------------- /addons/inventory_editor/uuid/uuid.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/inventory_editor/uuid/uuid.gd -------------------------------------------------------------------------------- /addons/inventory_editor/uuid/uuid.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dhfqk7aq86wal 2 | -------------------------------------------------------------------------------- /addons/localization_editor/LocalizationEditor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/LocalizationEditor.gd -------------------------------------------------------------------------------- /addons/localization_editor/LocalizationEditor.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ckmq416em0sf2 2 | -------------------------------------------------------------------------------- /addons/localization_editor/LocalizationEditor.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/LocalizationEditor.tscn -------------------------------------------------------------------------------- /addons/localization_editor/LocalizationEditorDialogFile.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/LocalizationEditorDialogFile.tscn -------------------------------------------------------------------------------- /addons/localization_editor/LocalizationManager.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/LocalizationManager.gd -------------------------------------------------------------------------------- /addons/localization_editor/LocalizationManager.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b6juq8vvsr8lt 2 | -------------------------------------------------------------------------------- /addons/localization_editor/icons/Add.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Add.png~ -------------------------------------------------------------------------------- /addons/localization_editor/icons/Add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Add.svg -------------------------------------------------------------------------------- /addons/localization_editor/icons/Add.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Add.svg.import -------------------------------------------------------------------------------- /addons/localization_editor/icons/Amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Amazon.png -------------------------------------------------------------------------------- /addons/localization_editor/icons/Amazon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Amazon.png.import -------------------------------------------------------------------------------- /addons/localization_editor/icons/Audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Audio.svg -------------------------------------------------------------------------------- /addons/localization_editor/icons/Audio.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Audio.svg.import -------------------------------------------------------------------------------- /addons/localization_editor/icons/Cancel.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Cancel.png~ -------------------------------------------------------------------------------- /addons/localization_editor/icons/Cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Cancel.svg -------------------------------------------------------------------------------- /addons/localization_editor/icons/Cancel.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Cancel.svg.import -------------------------------------------------------------------------------- /addons/localization_editor/icons/Close.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Close.png~ -------------------------------------------------------------------------------- /addons/localization_editor/icons/Close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Close.svg -------------------------------------------------------------------------------- /addons/localization_editor/icons/Close.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Close.svg.import -------------------------------------------------------------------------------- /addons/localization_editor/icons/DeepL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/DeepL.png -------------------------------------------------------------------------------- /addons/localization_editor/icons/DeepL.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/DeepL.png.import -------------------------------------------------------------------------------- /addons/localization_editor/icons/Del.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Del.png~ -------------------------------------------------------------------------------- /addons/localization_editor/icons/Del.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Del.svg -------------------------------------------------------------------------------- /addons/localization_editor/icons/Del.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Del.svg.import -------------------------------------------------------------------------------- /addons/localization_editor/icons/Down.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Down.png~ -------------------------------------------------------------------------------- /addons/localization_editor/icons/Export.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Export.png~ -------------------------------------------------------------------------------- /addons/localization_editor/icons/Export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Export.svg -------------------------------------------------------------------------------- /addons/localization_editor/icons/Export.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Export.svg.import -------------------------------------------------------------------------------- /addons/localization_editor/icons/File.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/File.png~ -------------------------------------------------------------------------------- /addons/localization_editor/icons/File.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/File.svg -------------------------------------------------------------------------------- /addons/localization_editor/icons/File.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/File.svg.import -------------------------------------------------------------------------------- /addons/localization_editor/icons/Google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Google.png -------------------------------------------------------------------------------- /addons/localization_editor/icons/Google.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Google.png.import -------------------------------------------------------------------------------- /addons/localization_editor/icons/Image.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Image.png~ -------------------------------------------------------------------------------- /addons/localization_editor/icons/Image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Image.svg -------------------------------------------------------------------------------- /addons/localization_editor/icons/Image.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Image.svg.import -------------------------------------------------------------------------------- /addons/localization_editor/icons/Key.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Key.png~ -------------------------------------------------------------------------------- /addons/localization_editor/icons/Locales.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Locales.png~ -------------------------------------------------------------------------------- /addons/localization_editor/icons/Locales.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Locales.svg -------------------------------------------------------------------------------- /addons/localization_editor/icons/Locales.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Locales.svg.import -------------------------------------------------------------------------------- /addons/localization_editor/icons/Localization.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Localization.png~ -------------------------------------------------------------------------------- /addons/localization_editor/icons/Localization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Localization.svg -------------------------------------------------------------------------------- /addons/localization_editor/icons/Localization.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Localization.svg.import -------------------------------------------------------------------------------- /addons/localization_editor/icons/Microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Microsoft.png -------------------------------------------------------------------------------- /addons/localization_editor/icons/Microsoft.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Microsoft.png.import -------------------------------------------------------------------------------- /addons/localization_editor/icons/Open.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Open.png~ -------------------------------------------------------------------------------- /addons/localization_editor/icons/Open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Open.svg -------------------------------------------------------------------------------- /addons/localization_editor/icons/Open.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Open.svg.import -------------------------------------------------------------------------------- /addons/localization_editor/icons/Placeholders.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Placeholders.png~ -------------------------------------------------------------------------------- /addons/localization_editor/icons/Placeholders.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Placeholders.svg -------------------------------------------------------------------------------- /addons/localization_editor/icons/Placeholders.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Placeholders.svg.import -------------------------------------------------------------------------------- /addons/localization_editor/icons/Play.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Play.png~ -------------------------------------------------------------------------------- /addons/localization_editor/icons/Pseudolocalization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Pseudolocalization.svg -------------------------------------------------------------------------------- /addons/localization_editor/icons/Pseudolocalization.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Pseudolocalization.svg.import -------------------------------------------------------------------------------- /addons/localization_editor/icons/Put.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Put.png~ -------------------------------------------------------------------------------- /addons/localization_editor/icons/Put.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Put.svg -------------------------------------------------------------------------------- /addons/localization_editor/icons/Put.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Put.svg.import -------------------------------------------------------------------------------- /addons/localization_editor/icons/Remaps.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Remaps.png~ -------------------------------------------------------------------------------- /addons/localization_editor/icons/Remaps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Remaps.svg -------------------------------------------------------------------------------- /addons/localization_editor/icons/Remaps.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Remaps.svg.import -------------------------------------------------------------------------------- /addons/localization_editor/icons/Save.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Save.png~ -------------------------------------------------------------------------------- /addons/localization_editor/icons/Save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Save.svg -------------------------------------------------------------------------------- /addons/localization_editor/icons/Save.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Save.svg.import -------------------------------------------------------------------------------- /addons/localization_editor/icons/Text.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Text.png~ -------------------------------------------------------------------------------- /addons/localization_editor/icons/Translate.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Translate.png~ -------------------------------------------------------------------------------- /addons/localization_editor/icons/Translation.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Translation.png~ -------------------------------------------------------------------------------- /addons/localization_editor/icons/Translation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Translation.svg -------------------------------------------------------------------------------- /addons/localization_editor/icons/Translation.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Translation.svg.import -------------------------------------------------------------------------------- /addons/localization_editor/icons/Trash.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Trash.png~ -------------------------------------------------------------------------------- /addons/localization_editor/icons/Up.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Up.png~ -------------------------------------------------------------------------------- /addons/localization_editor/icons/Video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Video.svg -------------------------------------------------------------------------------- /addons/localization_editor/icons/Video.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Video.svg.import -------------------------------------------------------------------------------- /addons/localization_editor/icons/Yandex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Yandex.png -------------------------------------------------------------------------------- /addons/localization_editor/icons/Yandex.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/Yandex.png.import -------------------------------------------------------------------------------- /addons/localization_editor/icons/yandex.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/icons/yandex.png~ -------------------------------------------------------------------------------- /addons/localization_editor/model/LocalizationData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/model/LocalizationData.gd -------------------------------------------------------------------------------- /addons/localization_editor/model/LocalizationData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d1ayajyhvhy1d 2 | -------------------------------------------------------------------------------- /addons/localization_editor/model/LocalizationLocaleSingle.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/model/LocalizationLocaleSingle.gd -------------------------------------------------------------------------------- /addons/localization_editor/model/LocalizationLocaleSingle.gd.uid: -------------------------------------------------------------------------------- 1 | uid://casg2628w5fip 2 | -------------------------------------------------------------------------------- /addons/localization_editor/model/LocalizationLocalesList.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/model/LocalizationLocalesList.gd -------------------------------------------------------------------------------- /addons/localization_editor/model/LocalizationLocalesList.gd.uid: -------------------------------------------------------------------------------- 1 | uid://chcuw1cv1or7e 2 | -------------------------------------------------------------------------------- /addons/localization_editor/model/LocalizationPlaceholdersData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/model/LocalizationPlaceholdersData.gd -------------------------------------------------------------------------------- /addons/localization_editor/model/LocalizationPlaceholdersData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c5uphecx06ssk 2 | -------------------------------------------------------------------------------- /addons/localization_editor/model/LocalizationSave.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/model/LocalizationSave.gd -------------------------------------------------------------------------------- /addons/localization_editor/model/LocalizationSave.gd.uid: -------------------------------------------------------------------------------- 1 | uid://csxt6o725hifd 2 | -------------------------------------------------------------------------------- /addons/localization_editor/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/plugin.cfg -------------------------------------------------------------------------------- /addons/localization_editor/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/plugin.gd -------------------------------------------------------------------------------- /addons/localization_editor/plugin.gd.uid: -------------------------------------------------------------------------------- 1 | uid://do6jhpkftc4ru 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/auto_translate/LocalizationAutoTranslateEditorView.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b04y6llu3hhm6 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/auto_translate/translator/LocalizationAutoTranslate.gd.uid: -------------------------------------------------------------------------------- 1 | uid://chfhor5gxakab 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/auto_translate/translator/LocalizationAutoTranslateAmazon.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bpywvcf0vkd3n 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/auto_translate/translator/LocalizationAutoTranslateDeepL.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bi0bmbkfooxqb 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/auto_translate/translator/LocalizationAutoTranslateGoogle.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ciapihuwulpor 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/auto_translate/translator/LocalizationAutoTranslateMicrosoft.gd.uid: -------------------------------------------------------------------------------- 1 | uid://di8agmyw86i8 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/auto_translate/translator/LocalizationAutoTranslateYandex.gd.uid: -------------------------------------------------------------------------------- 1 | uid://j6lqx5tkdcjs 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/locales/LocalizationLocale.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/scenes/locales/LocalizationLocale.gd -------------------------------------------------------------------------------- /addons/localization_editor/scenes/locales/LocalizationLocale.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dq20vvsp00ybe 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/locales/LocalizationLocale.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/scenes/locales/LocalizationLocale.tscn -------------------------------------------------------------------------------- /addons/localization_editor/scenes/locales/LocalizationLocales.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/scenes/locales/LocalizationLocales.gd -------------------------------------------------------------------------------- /addons/localization_editor/scenes/locales/LocalizationLocales.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dvpiadjousi77 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/locales/LocalizationLocalesEditorView.gd.uid: -------------------------------------------------------------------------------- 1 | uid://f3c8xo2eotis 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/locales/LocalizationLocalesFilter.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cucyd76r8nakd 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/placeholders/LocalizationPlaceholder.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bydyns4njidxb 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/placeholders/LocalizationPlaceholders.gd.uid: -------------------------------------------------------------------------------- 1 | uid://nb2opaqetvgm 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/placeholders/LocalizationPlaceholdersEditorView.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cbx786nwjd8j1 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/placeholders/LocalizationPlaceholdersHead.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bf4c7kg4x4gr2 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/placeholders/LocalizationPlaceholdersKey.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bd6xti6wqfcxn 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/placeholders/LocalizationPlaceholdersKeys.gd.uid: -------------------------------------------------------------------------------- 1 | uid://capqfx4oimkvr 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/placeholders/LocalizationPlaceholdersList.gd.uid: -------------------------------------------------------------------------------- 1 | uid://btxtlllqthd2m 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/pseudolocalization/LocalizationPseudolocalizationEditorView.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bgblr0kj1icmg 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/pseudolocalization/control/LocalizationPseudolocalizationControl.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cakt0umdo85q8 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/pseudolocalization/control/LocalizationPseudolocalizationUI.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c30mtbwqac61t 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/pseudolocalization/ui/LocalizationPseudolocalizationForUI.gd.uid: -------------------------------------------------------------------------------- 1 | uid://buopxximd2g6o 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/remaps/LocalizationRemap.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/scenes/remaps/LocalizationRemap.gd -------------------------------------------------------------------------------- /addons/localization_editor/scenes/remaps/LocalizationRemap.gd.uid: -------------------------------------------------------------------------------- 1 | uid://byyea3je24r21 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/remaps/LocalizationRemap.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/scenes/remaps/LocalizationRemap.tscn -------------------------------------------------------------------------------- /addons/localization_editor/scenes/remaps/LocalizationRemapPath.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/scenes/remaps/LocalizationRemapPath.gd -------------------------------------------------------------------------------- /addons/localization_editor/scenes/remaps/LocalizationRemapPath.gd.uid: -------------------------------------------------------------------------------- 1 | uid://7g6uqiub5348 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/remaps/LocalizationRemaps.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/scenes/remaps/LocalizationRemaps.gd -------------------------------------------------------------------------------- /addons/localization_editor/scenes/remaps/LocalizationRemaps.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dqwkgntdfttoi 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/remaps/LocalizationRemaps.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/scenes/remaps/LocalizationRemaps.tscn -------------------------------------------------------------------------------- /addons/localization_editor/scenes/remaps/LocalizationRemapsEditorView.gd.uid: -------------------------------------------------------------------------------- 1 | uid://caaqvbc74igqy 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/remaps/LocalizationRemapsHead.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dwnhqru8gnlc4 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/remaps/LocalizationRemapsKey.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/scenes/remaps/LocalizationRemapsKey.gd -------------------------------------------------------------------------------- /addons/localization_editor/scenes/remaps/LocalizationRemapsKey.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b24lsfeyuag63 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/remaps/LocalizationRemapsKeys.gd.uid: -------------------------------------------------------------------------------- 1 | uid://01vimtr8ywjt 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/remaps/LocalizationRemapsKeysHead.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ecskh7d37c08 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/remaps/LocalizationRemapsList.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d0qvnlo8ukbh8 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/translations/LocalizationTranslation.gd.uid: -------------------------------------------------------------------------------- 1 | uid://4kn64wkg5n1l 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/translations/LocalizationTranslations.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cectylpkqf85m 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/translations/LocalizationTranslationsEditorView.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cytdgmtc72vs8 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/translations/LocalizationTranslationsHead.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dnfre77nh2vn7 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/translations/LocalizationTranslationsKey.gd.uid: -------------------------------------------------------------------------------- 1 | uid://be4s0j3treh0k 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/translations/LocalizationTranslationsKeys.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cg0wx8i8yvi01 2 | -------------------------------------------------------------------------------- /addons/localization_editor/scenes/translations/LocalizationTranslationsList.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c5tvuiuohy8aj 2 | -------------------------------------------------------------------------------- /addons/localization_editor/uuid/.gitattributes: -------------------------------------------------------------------------------- 1 | *.gd linguist-language=GDScript 2 | -------------------------------------------------------------------------------- /addons/localization_editor/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/uuid/LICENSE -------------------------------------------------------------------------------- /addons/localization_editor/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/uuid/README.md -------------------------------------------------------------------------------- /addons/localization_editor/uuid/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/uuid/logo.png -------------------------------------------------------------------------------- /addons/localization_editor/uuid/logo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/uuid/logo.png.import -------------------------------------------------------------------------------- /addons/localization_editor/uuid/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/uuid/logo.svg -------------------------------------------------------------------------------- /addons/localization_editor/uuid/logo.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/uuid/logo.svg.import -------------------------------------------------------------------------------- /addons/localization_editor/uuid/uuid.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/localization_editor/uuid/uuid.gd -------------------------------------------------------------------------------- /addons/localization_editor/uuid/uuid.gd.uid: -------------------------------------------------------------------------------- 1 | uid://drr2pvv67gxf0 2 | -------------------------------------------------------------------------------- /addons/quest_editor/QuestEditor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/QuestEditor.gd -------------------------------------------------------------------------------- /addons/quest_editor/QuestEditor.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bo4noe3v21ubx 2 | -------------------------------------------------------------------------------- /addons/quest_editor/QuestEditor.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/QuestEditor.tscn -------------------------------------------------------------------------------- /addons/quest_editor/QuestInspectorPlugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/QuestInspectorPlugin.gd -------------------------------------------------------------------------------- /addons/quest_editor/QuestInspectorPlugin.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cl2c8i6necjd6 2 | -------------------------------------------------------------------------------- /addons/quest_editor/QuestInspectorPluginNpc.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/QuestInspectorPluginNpc.gd -------------------------------------------------------------------------------- /addons/quest_editor/QuestInspectorPluginNpc.gd.uid: -------------------------------------------------------------------------------- 1 | uid://10i3rsj6hdrr 2 | -------------------------------------------------------------------------------- /addons/quest_editor/QuestManager.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/QuestManager.gd -------------------------------------------------------------------------------- /addons/quest_editor/QuestManager.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cxxhv6wrd3mvs 2 | -------------------------------------------------------------------------------- /addons/quest_editor/QuestsSave.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/QuestsSave.res -------------------------------------------------------------------------------- /addons/quest_editor/default/fonts/Pangolin-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/default/fonts/Pangolin-Regular.ttf -------------------------------------------------------------------------------- /addons/quest_editor/default/fonts/Pangolin-Regular.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/default/fonts/Pangolin-Regular.ttf.import -------------------------------------------------------------------------------- /addons/quest_editor/icons/Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Add.png -------------------------------------------------------------------------------- /addons/quest_editor/icons/Add.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Add.png.import -------------------------------------------------------------------------------- /addons/quest_editor/icons/Del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Del.png -------------------------------------------------------------------------------- /addons/quest_editor/icons/Del.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Del.png.import -------------------------------------------------------------------------------- /addons/quest_editor/icons/Destination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Destination.png -------------------------------------------------------------------------------- /addons/quest_editor/icons/Destination.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Destination.png.import -------------------------------------------------------------------------------- /addons/quest_editor/icons/Destination.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Destination.png~ -------------------------------------------------------------------------------- /addons/quest_editor/icons/Enemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Enemy.png -------------------------------------------------------------------------------- /addons/quest_editor/icons/Enemy.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Enemy.png.import -------------------------------------------------------------------------------- /addons/quest_editor/icons/Enemy.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Enemy.png~ -------------------------------------------------------------------------------- /addons/quest_editor/icons/File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/File.png -------------------------------------------------------------------------------- /addons/quest_editor/icons/File.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/File.png.import -------------------------------------------------------------------------------- /addons/quest_editor/icons/Item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Item.png -------------------------------------------------------------------------------- /addons/quest_editor/icons/Item.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Item.png.import -------------------------------------------------------------------------------- /addons/quest_editor/icons/NPC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/NPC.png -------------------------------------------------------------------------------- /addons/quest_editor/icons/NPC.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/NPC.png.import -------------------------------------------------------------------------------- /addons/quest_editor/icons/Player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Player.png -------------------------------------------------------------------------------- /addons/quest_editor/icons/Player.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Player.png.import -------------------------------------------------------------------------------- /addons/quest_editor/icons/Player.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Player.png~ -------------------------------------------------------------------------------- /addons/quest_editor/icons/Put.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Put.png -------------------------------------------------------------------------------- /addons/quest_editor/icons/Put.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Put.png.import -------------------------------------------------------------------------------- /addons/quest_editor/icons/Quest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Quest.png -------------------------------------------------------------------------------- /addons/quest_editor/icons/Quest.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Quest.png.import -------------------------------------------------------------------------------- /addons/quest_editor/icons/Quest.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Quest.png~ -------------------------------------------------------------------------------- /addons/quest_editor/icons/QuestPath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/QuestPath.png -------------------------------------------------------------------------------- /addons/quest_editor/icons/QuestPath.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/QuestPath.png.import -------------------------------------------------------------------------------- /addons/quest_editor/icons/QuestPath.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/QuestPath.png~ -------------------------------------------------------------------------------- /addons/quest_editor/icons/Question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Question.png -------------------------------------------------------------------------------- /addons/quest_editor/icons/Question.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Question.png.import -------------------------------------------------------------------------------- /addons/quest_editor/icons/Question.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Question.png~ -------------------------------------------------------------------------------- /addons/quest_editor/icons/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Save.png -------------------------------------------------------------------------------- /addons/quest_editor/icons/Save.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Save.png.import -------------------------------------------------------------------------------- /addons/quest_editor/icons/Trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Trash.png -------------------------------------------------------------------------------- /addons/quest_editor/icons/Trash.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Trash.png.import -------------------------------------------------------------------------------- /addons/quest_editor/icons/Trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Trigger.png -------------------------------------------------------------------------------- /addons/quest_editor/icons/Trigger.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Trigger.png.import -------------------------------------------------------------------------------- /addons/quest_editor/icons/Trigger.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Trigger.png~ -------------------------------------------------------------------------------- /addons/quest_editor/icons/Triggers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Triggers.png -------------------------------------------------------------------------------- /addons/quest_editor/icons/Triggers.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Triggers.png.import -------------------------------------------------------------------------------- /addons/quest_editor/icons/Triggers.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/icons/Triggers.png~ -------------------------------------------------------------------------------- /addons/quest_editor/model/QuestData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/model/QuestData.gd -------------------------------------------------------------------------------- /addons/quest_editor/model/QuestData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://6asw8jqoig6y 2 | -------------------------------------------------------------------------------- /addons/quest_editor/model/QuestQuest.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/model/QuestQuest.gd -------------------------------------------------------------------------------- /addons/quest_editor/model/QuestQuest.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dj5hxvok2y74 2 | -------------------------------------------------------------------------------- /addons/quest_editor/model/QuestTrigger.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/model/QuestTrigger.gd -------------------------------------------------------------------------------- /addons/quest_editor/model/QuestTrigger.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c387cccd2ohl5 2 | -------------------------------------------------------------------------------- /addons/quest_editor/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/plugin.cfg -------------------------------------------------------------------------------- /addons/quest_editor/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/plugin.gd -------------------------------------------------------------------------------- /addons/quest_editor/plugin.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bwhwxxyykdhfv 2 | -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/quests/QuestQuestData.gd -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bdofvsdcske0g 2 | -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestData.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/quests/QuestQuestData.tscn -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestDataDelivery.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/quests/QuestQuestDataDelivery.gd -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestDataDelivery.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c7b8d72gcxtjm 2 | -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestDataDelivery.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/quests/QuestQuestDataDelivery.tscn -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestDataNameDescription.gd.uid: -------------------------------------------------------------------------------- 1 | uid://brwgbnq1qjdps 2 | -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestDataRequerements.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/quests/QuestQuestDataRequerements.gd -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestDataRequerements.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cbyw01f0j5ik3 2 | -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestDataRequerements.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/quests/QuestQuestDataRequerements.tscn -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestDataRequerementsView.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d2eoee74t88sc 2 | -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestDataRequerementsViewItem.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d3eelkfkb5yv4 2 | -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestDataRewards.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/quests/QuestQuestDataRewards.gd -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestDataRewards.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d3kwubtpbl73f 2 | -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestDataRewards.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/quests/QuestQuestDataRewards.tscn -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestDataRewardsView.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/quests/QuestQuestDataRewardsView.gd -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestDataRewardsView.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dvxscdc4hk35p 2 | -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestDataRewardsView.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/quests/QuestQuestDataRewardsView.tscn -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestDataRewardsViewItem.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d6ifc0x67m2f 2 | -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestDataStart.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/quests/QuestQuestDataStart.gd -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestDataStart.gd.uid: -------------------------------------------------------------------------------- 1 | uid://8ctrn6u8j5pr 2 | -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestDataStart.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/quests/QuestQuestDataStart.tscn -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestDataTasks.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/quests/QuestQuestDataTasks.gd -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestDataTasks.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bqulyxhubfvoj 2 | -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestDataTasks.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/quests/QuestQuestDataTasks.tscn -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestDataTasksView.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/quests/QuestQuestDataTasksView.gd -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestDataTasksView.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cieg6mi40xpdo 2 | -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestDataTasksView.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/quests/QuestQuestDataTasksView.tscn -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestDataTasksViewItem.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/quests/QuestQuestDataTasksViewItem.gd -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestDataTasksViewItem.gd.uid: -------------------------------------------------------------------------------- 1 | uid://br6ikmbkpqb4g 2 | -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/quests/QuestQuestUI.gd -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestUI.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b3ioyj7e5dk4s 2 | -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestUI.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/quests/QuestQuestUI.tscn -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuests.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/quests/QuestQuests.gd -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuests.gd.uid: -------------------------------------------------------------------------------- 1 | uid://drpo73hn40pbj 2 | -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuests.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/quests/QuestQuests.tscn -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestsEditorView.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/quests/QuestQuestsEditorView.gd -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestsEditorView.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d0mfu52p54mar 2 | -------------------------------------------------------------------------------- /addons/quest_editor/scenes/quests/QuestQuestsEditorView.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/quests/QuestQuestsEditorView.tscn -------------------------------------------------------------------------------- /addons/quest_editor/scenes/triggers/QuestTriggerData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/triggers/QuestTriggerData.gd -------------------------------------------------------------------------------- /addons/quest_editor/scenes/triggers/QuestTriggerData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dhrop1d2alnxf 2 | -------------------------------------------------------------------------------- /addons/quest_editor/scenes/triggers/QuestTriggerData.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/triggers/QuestTriggerData.tscn -------------------------------------------------------------------------------- /addons/quest_editor/scenes/triggers/QuestTriggerPath.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/triggers/QuestTriggerPath.gd -------------------------------------------------------------------------------- /addons/quest_editor/scenes/triggers/QuestTriggerPath.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bjkfvmue5ixoe 2 | -------------------------------------------------------------------------------- /addons/quest_editor/scenes/triggers/QuestTriggerPath.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/triggers/QuestTriggerPath.tscn -------------------------------------------------------------------------------- /addons/quest_editor/scenes/triggers/QuestTriggerPathDialog.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/triggers/QuestTriggerPathDialog.tscn -------------------------------------------------------------------------------- /addons/quest_editor/scenes/triggers/QuestTriggerUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/triggers/QuestTriggerUI.gd -------------------------------------------------------------------------------- /addons/quest_editor/scenes/triggers/QuestTriggerUI.gd.uid: -------------------------------------------------------------------------------- 1 | uid://quort8x2oju8 2 | -------------------------------------------------------------------------------- /addons/quest_editor/scenes/triggers/QuestTriggerUI.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/triggers/QuestTriggerUI.tscn -------------------------------------------------------------------------------- /addons/quest_editor/scenes/triggers/QuestTriggers.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/triggers/QuestTriggers.gd -------------------------------------------------------------------------------- /addons/quest_editor/scenes/triggers/QuestTriggers.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bcbp40neppnij 2 | -------------------------------------------------------------------------------- /addons/quest_editor/scenes/triggers/QuestTriggers.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/triggers/QuestTriggers.tscn -------------------------------------------------------------------------------- /addons/quest_editor/scenes/triggers/QuestTriggersEditorView.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/triggers/QuestTriggersEditorView.gd -------------------------------------------------------------------------------- /addons/quest_editor/scenes/triggers/QuestTriggersEditorView.gd.uid: -------------------------------------------------------------------------------- 1 | uid://gk3h1cxciv3i 2 | -------------------------------------------------------------------------------- /addons/quest_editor/scenes/triggers/QuestTriggersEditorView.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/scenes/triggers/QuestTriggersEditorView.tscn -------------------------------------------------------------------------------- /addons/quest_editor/ui/QuestWatcher.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/ui/QuestWatcher.gd -------------------------------------------------------------------------------- /addons/quest_editor/ui/QuestWatcher.gd.uid: -------------------------------------------------------------------------------- 1 | uid://37v5x8vkh2o5 2 | -------------------------------------------------------------------------------- /addons/quest_editor/ui/QuestWatcher.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/ui/QuestWatcher.tscn -------------------------------------------------------------------------------- /addons/quest_editor/ui/QuestWatcherDelivery.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/ui/QuestWatcherDelivery.gd -------------------------------------------------------------------------------- /addons/quest_editor/ui/QuestWatcherDelivery.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b8kvhnuhxmqmq 2 | -------------------------------------------------------------------------------- /addons/quest_editor/ui/QuestWatcherDelivery.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/ui/QuestWatcherDelivery.tscn -------------------------------------------------------------------------------- /addons/quest_editor/ui/QuestWatcherTask.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/ui/QuestWatcherTask.gd -------------------------------------------------------------------------------- /addons/quest_editor/ui/QuestWatcherTask.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c1h5hjxp7x1ll 2 | -------------------------------------------------------------------------------- /addons/quest_editor/ui/QuestWatcherTask.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/ui/QuestWatcherTask.tscn -------------------------------------------------------------------------------- /addons/quest_editor/use/2d/QuestDestination2D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/use/2d/QuestDestination2D.gd -------------------------------------------------------------------------------- /addons/quest_editor/use/2d/QuestDestination2D.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dvwxmxxt0uodm 2 | -------------------------------------------------------------------------------- /addons/quest_editor/use/2d/QuestEnemy2D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/use/2d/QuestEnemy2D.gd -------------------------------------------------------------------------------- /addons/quest_editor/use/2d/QuestEnemy2D.gd.uid: -------------------------------------------------------------------------------- 1 | uid://7sdjf0tkyybv 2 | -------------------------------------------------------------------------------- /addons/quest_editor/use/2d/QuestNpc2D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/use/2d/QuestNpc2D.gd -------------------------------------------------------------------------------- /addons/quest_editor/use/2d/QuestNpc2D.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bx814r6wiyno1 2 | -------------------------------------------------------------------------------- /addons/quest_editor/use/2d/QuestPlayer2D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/use/2d/QuestPlayer2D.gd -------------------------------------------------------------------------------- /addons/quest_editor/use/2d/QuestPlayer2D.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d3vhhf0yd48mx 2 | -------------------------------------------------------------------------------- /addons/quest_editor/use/2d/QuestTrigger2D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/use/2d/QuestTrigger2D.gd -------------------------------------------------------------------------------- /addons/quest_editor/use/2d/QuestTrigger2D.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cvubb70wlmsto 2 | -------------------------------------------------------------------------------- /addons/quest_editor/use/3d/QuestBase3D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/use/3d/QuestBase3D.gd -------------------------------------------------------------------------------- /addons/quest_editor/use/3d/QuestBase3D.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b42ptpyeppkgj 2 | -------------------------------------------------------------------------------- /addons/quest_editor/use/3d/QuestDestination3D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/use/3d/QuestDestination3D.gd -------------------------------------------------------------------------------- /addons/quest_editor/use/3d/QuestDestination3D.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bkvb6ww0inkb6 2 | -------------------------------------------------------------------------------- /addons/quest_editor/use/3d/QuestEnemy3D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/use/3d/QuestEnemy3D.gd -------------------------------------------------------------------------------- /addons/quest_editor/use/3d/QuestEnemy3D.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dvkyju5qux4pm 2 | -------------------------------------------------------------------------------- /addons/quest_editor/use/3d/QuestNpc3D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/use/3d/QuestNpc3D.gd -------------------------------------------------------------------------------- /addons/quest_editor/use/3d/QuestNpc3D.gd.uid: -------------------------------------------------------------------------------- 1 | uid://djxk32cw2l53f 2 | -------------------------------------------------------------------------------- /addons/quest_editor/use/3d/QuestPlayer3D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/use/3d/QuestPlayer3D.gd -------------------------------------------------------------------------------- /addons/quest_editor/use/3d/QuestPlayer3D.gd.uid: -------------------------------------------------------------------------------- 1 | uid://jfomqhvg3b2u 2 | -------------------------------------------------------------------------------- /addons/quest_editor/use/3d/QuestTrigger3D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/use/3d/QuestTrigger3D.gd -------------------------------------------------------------------------------- /addons/quest_editor/use/3d/QuestTrigger3D.gd.uid: -------------------------------------------------------------------------------- 1 | uid://y8cmex07oif4 2 | -------------------------------------------------------------------------------- /addons/quest_editor/uuid/.gitattributes: -------------------------------------------------------------------------------- 1 | *.gd linguist-language=GDScript 2 | -------------------------------------------------------------------------------- /addons/quest_editor/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/uuid/LICENSE -------------------------------------------------------------------------------- /addons/quest_editor/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/uuid/README.md -------------------------------------------------------------------------------- /addons/quest_editor/uuid/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/uuid/logo.png -------------------------------------------------------------------------------- /addons/quest_editor/uuid/logo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/uuid/logo.png.import -------------------------------------------------------------------------------- /addons/quest_editor/uuid/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/uuid/logo.svg -------------------------------------------------------------------------------- /addons/quest_editor/uuid/logo.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/uuid/logo.svg.import -------------------------------------------------------------------------------- /addons/quest_editor/uuid/uuid.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/quest_editor/uuid/uuid.gd -------------------------------------------------------------------------------- /addons/quest_editor/uuid/uuid.gd.uid: -------------------------------------------------------------------------------- 1 | uid://td3k23p2dca2 2 | -------------------------------------------------------------------------------- /addons/ui_extensions/dropdown/Arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/ui_extensions/dropdown/Arrow.svg -------------------------------------------------------------------------------- /addons/ui_extensions/dropdown/Arrow.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/ui_extensions/dropdown/Arrow.svg.import -------------------------------------------------------------------------------- /addons/ui_extensions/dropdown/Cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/ui_extensions/dropdown/Cancel.svg -------------------------------------------------------------------------------- /addons/ui_extensions/dropdown/Cancel.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/ui_extensions/dropdown/Cancel.svg.import -------------------------------------------------------------------------------- /addons/ui_extensions/dropdown/Dropdown.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/ui_extensions/dropdown/Dropdown.gd -------------------------------------------------------------------------------- /addons/ui_extensions/dropdown/Dropdown.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b6dj3efoi2kcc 2 | -------------------------------------------------------------------------------- /addons/ui_extensions/dropdown/Dropdown.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/ui_extensions/dropdown/Dropdown.tscn -------------------------------------------------------------------------------- /addons/ui_extensions/dropdown/DropdownItem.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/addons/ui_extensions/dropdown/DropdownItem.gd -------------------------------------------------------------------------------- /addons/ui_extensions/dropdown/DropdownItem.gd.uid: -------------------------------------------------------------------------------- 1 | uid://y6ufeulqpdbi 2 | -------------------------------------------------------------------------------- /dialogue/DialogueDialogues.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/dialogue/DialogueDialogues.gd -------------------------------------------------------------------------------- /dialogue/DialogueDialogues.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ds1ypb883dn4v 2 | -------------------------------------------------------------------------------- /dialogue/DialogueEvents.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/dialogue/DialogueEvents.gd -------------------------------------------------------------------------------- /dialogue/DialogueEvents.gd.uid: -------------------------------------------------------------------------------- 1 | uid://8i84x68qadbb 2 | -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/icon.png.import -------------------------------------------------------------------------------- /inventory/InventoryManagerInventory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/inventory/InventoryManagerInventory.gd -------------------------------------------------------------------------------- /inventory/InventoryManagerInventory.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b6u8nif7d1arm 2 | -------------------------------------------------------------------------------- /inventory/InventoryManagerItem.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/inventory/InventoryManagerItem.gd -------------------------------------------------------------------------------- /inventory/InventoryManagerItem.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bihbah805l0fy 2 | -------------------------------------------------------------------------------- /localization/LocalizationKeys.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/localization/LocalizationKeys.gd -------------------------------------------------------------------------------- /localization/LocalizationKeys.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bievtlt87j6t 2 | -------------------------------------------------------------------------------- /localization/LocalizationPlaceholders.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/localization/LocalizationPlaceholders.gd -------------------------------------------------------------------------------- /localization/LocalizationPlaceholders.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ciweorp5mepa4 2 | -------------------------------------------------------------------------------- /localization/Placeholders.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/localization/Placeholders.tres -------------------------------------------------------------------------------- /localization/localizations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/localization/localizations.csv -------------------------------------------------------------------------------- /localization/localizations.csv.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/localization/localizations.csv.import -------------------------------------------------------------------------------- /localization/localizations.de.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/localization/localizations.de.translation -------------------------------------------------------------------------------- /localization/localizations.en.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/localization/localizations.en.translation -------------------------------------------------------------------------------- /localization/localizations.ru.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/localization/localizations.ru.translation -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/project.godot -------------------------------------------------------------------------------- /quest/QuestManagerQuests.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest/QuestManagerQuests.gd -------------------------------------------------------------------------------- /quest/QuestManagerQuests.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cpku5a58dql1r 2 | -------------------------------------------------------------------------------- /quest/QuestManagerTriggers.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest/QuestManagerTriggers.gd -------------------------------------------------------------------------------- /quest/QuestManagerTriggers.gd.uid: -------------------------------------------------------------------------------- 1 | uid://btixdjm1fmu4h 2 | -------------------------------------------------------------------------------- /quest_example/2d/Item.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/2d/Item.gd -------------------------------------------------------------------------------- /quest_example/2d/Item.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bjeefkunob45s 2 | -------------------------------------------------------------------------------- /quest_example/2d/Level.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/2d/Level.gd -------------------------------------------------------------------------------- /quest_example/2d/Level.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cakxdl82qjb5y 2 | -------------------------------------------------------------------------------- /quest_example/2d/Level.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/2d/Level.tscn -------------------------------------------------------------------------------- /quest_example/2d/actors/Destination.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/2d/actors/Destination.tscn -------------------------------------------------------------------------------- /quest_example/2d/actors/Enemy.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/2d/actors/Enemy.tscn -------------------------------------------------------------------------------- /quest_example/2d/actors/Girl.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/2d/actors/Girl.gd -------------------------------------------------------------------------------- /quest_example/2d/actors/Girl.gd.uid: -------------------------------------------------------------------------------- 1 | uid://1ey7oojycx34 2 | -------------------------------------------------------------------------------- /quest_example/2d/actors/Girl.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/2d/actors/Girl.tscn -------------------------------------------------------------------------------- /quest_example/2d/actors/Item.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/2d/actors/Item.tscn -------------------------------------------------------------------------------- /quest_example/2d/actors/ItemBig.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/2d/actors/ItemBig.tscn -------------------------------------------------------------------------------- /quest_example/2d/actors/John.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/2d/actors/John.gd -------------------------------------------------------------------------------- /quest_example/2d/actors/John.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d2m2ddbljnkva 2 | -------------------------------------------------------------------------------- /quest_example/2d/actors/John.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/2d/actors/John.tscn -------------------------------------------------------------------------------- /quest_example/2d/actors/Trigger.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/2d/actors/Trigger.gd -------------------------------------------------------------------------------- /quest_example/2d/actors/Trigger.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d4ftevqjkoh3x 2 | -------------------------------------------------------------------------------- /quest_example/2d/actors/Trigger.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/2d/actors/Trigger.tscn -------------------------------------------------------------------------------- /quest_example/2d/actors/Weapon.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/2d/actors/Weapon.tscn -------------------------------------------------------------------------------- /quest_example/2d/player/Player.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/2d/player/Player.gd -------------------------------------------------------------------------------- /quest_example/2d/player/Player.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d2hhu8rmgyrkn 2 | -------------------------------------------------------------------------------- /quest_example/2d/player/Player.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/2d/player/Player.tscn -------------------------------------------------------------------------------- /quest_example/3d/Item.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/Item.gd -------------------------------------------------------------------------------- /quest_example/3d/Item.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bx7waoh5abe1m 2 | -------------------------------------------------------------------------------- /quest_example/3d/Level.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/Level.gd -------------------------------------------------------------------------------- /quest_example/3d/Level.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cjgf00krx2c6e 2 | -------------------------------------------------------------------------------- /quest_example/3d/Level.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/Level.tscn -------------------------------------------------------------------------------- /quest_example/3d/actors/Destination.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/actors/Destination.tscn -------------------------------------------------------------------------------- /quest_example/3d/actors/Enemy.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/actors/Enemy.tscn -------------------------------------------------------------------------------- /quest_example/3d/actors/Girl.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/actors/Girl.gd -------------------------------------------------------------------------------- /quest_example/3d/actors/Girl.gd.uid: -------------------------------------------------------------------------------- 1 | uid://o6yw1frugrkf 2 | -------------------------------------------------------------------------------- /quest_example/3d/actors/Girl.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/actors/Girl.tscn -------------------------------------------------------------------------------- /quest_example/3d/actors/Item.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/actors/Item.tscn -------------------------------------------------------------------------------- /quest_example/3d/actors/ItemBig.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/actors/ItemBig.tscn -------------------------------------------------------------------------------- /quest_example/3d/actors/John.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/actors/John.gd -------------------------------------------------------------------------------- /quest_example/3d/actors/John.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bftqkrkxm7q80 2 | -------------------------------------------------------------------------------- /quest_example/3d/actors/John.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/actors/John.tscn -------------------------------------------------------------------------------- /quest_example/3d/actors/Trigger.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/actors/Trigger.gd -------------------------------------------------------------------------------- /quest_example/3d/actors/Trigger.gd.uid: -------------------------------------------------------------------------------- 1 | uid://fp12n5fvj7t0 2 | -------------------------------------------------------------------------------- /quest_example/3d/actors/Trigger.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/actors/Trigger.tscn -------------------------------------------------------------------------------- /quest_example/3d/actors/Weapon.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/actors/Weapon.tscn -------------------------------------------------------------------------------- /quest_example/3d/models/Black.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/Black.material -------------------------------------------------------------------------------- /quest_example/3d/models/BladeMat.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/BladeMat.material -------------------------------------------------------------------------------- /quest_example/3d/models/Blue.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/Blue.material -------------------------------------------------------------------------------- /quest_example/3d/models/Brown.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/Brown.material -------------------------------------------------------------------------------- /quest_example/3d/models/DestGripMat.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/DestGripMat.material -------------------------------------------------------------------------------- /quest_example/3d/models/GlasMat.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/GlasMat.material -------------------------------------------------------------------------------- /quest_example/3d/models/Green.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/Green.material -------------------------------------------------------------------------------- /quest_example/3d/models/HealthMat.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/HealthMat.material -------------------------------------------------------------------------------- /quest_example/3d/models/ManaMat.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/ManaMat.material -------------------------------------------------------------------------------- /quest_example/3d/models/Orange.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/Orange.material -------------------------------------------------------------------------------- /quest_example/3d/models/Pink.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/Pink.material -------------------------------------------------------------------------------- /quest_example/3d/models/Red.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/Red.material -------------------------------------------------------------------------------- /quest_example/3d/models/White.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/White.material -------------------------------------------------------------------------------- /quest_example/3d/models/White_001.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/White_001.material -------------------------------------------------------------------------------- /quest_example/3d/models/WoodMat.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/WoodMat.material -------------------------------------------------------------------------------- /quest_example/3d/models/Yellow.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/Yellow.material -------------------------------------------------------------------------------- /quest_example/3d/models/godotAttention.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotAttention.blend -------------------------------------------------------------------------------- /quest_example/3d/models/godotAttention.blend.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotAttention.blend.import -------------------------------------------------------------------------------- /quest_example/3d/models/godotAttention.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotAttention.blend1 -------------------------------------------------------------------------------- /quest_example/3d/models/godotAttention.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotAttention.glb -------------------------------------------------------------------------------- /quest_example/3d/models/godotAttention.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotAttention.glb.import -------------------------------------------------------------------------------- /quest_example/3d/models/godotBoy.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotBoy.blend -------------------------------------------------------------------------------- /quest_example/3d/models/godotBoy.blend.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotBoy.blend.import -------------------------------------------------------------------------------- /quest_example/3d/models/godotBoy.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotBoy.glb -------------------------------------------------------------------------------- /quest_example/3d/models/godotBoy.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotBoy.glb.import -------------------------------------------------------------------------------- /quest_example/3d/models/godotDestination.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotDestination.blend -------------------------------------------------------------------------------- /quest_example/3d/models/godotDestination.blend.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotDestination.blend.import -------------------------------------------------------------------------------- /quest_example/3d/models/godotDestination.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotDestination.blend1 -------------------------------------------------------------------------------- /quest_example/3d/models/godotDestination.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotDestination.glb -------------------------------------------------------------------------------- /quest_example/3d/models/godotDestination.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotDestination.glb.import -------------------------------------------------------------------------------- /quest_example/3d/models/godotEnemy.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotEnemy.blend -------------------------------------------------------------------------------- /quest_example/3d/models/godotEnemy.blend.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotEnemy.blend.import -------------------------------------------------------------------------------- /quest_example/3d/models/godotEnemy.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotEnemy.blend1 -------------------------------------------------------------------------------- /quest_example/3d/models/godotEnemy.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotEnemy.glb -------------------------------------------------------------------------------- /quest_example/3d/models/godotEnemy.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotEnemy.glb.import -------------------------------------------------------------------------------- /quest_example/3d/models/godotGirl.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotGirl.blend -------------------------------------------------------------------------------- /quest_example/3d/models/godotGirl.blend.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotGirl.blend.import -------------------------------------------------------------------------------- /quest_example/3d/models/godotGirl.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotGirl.blend1 -------------------------------------------------------------------------------- /quest_example/3d/models/godotGirl.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotGirl.glb -------------------------------------------------------------------------------- /quest_example/3d/models/godotGirl.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotGirl.glb.import -------------------------------------------------------------------------------- /quest_example/3d/models/godotItem.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotItem.glb -------------------------------------------------------------------------------- /quest_example/3d/models/godotItem.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotItem.glb.import -------------------------------------------------------------------------------- /quest_example/3d/models/godotItemBig.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotItemBig.glb -------------------------------------------------------------------------------- /quest_example/3d/models/godotItemBig.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotItemBig.glb.import -------------------------------------------------------------------------------- /quest_example/3d/models/godotJohn.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotJohn.blend -------------------------------------------------------------------------------- /quest_example/3d/models/godotJohn.blend.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotJohn.blend.import -------------------------------------------------------------------------------- /quest_example/3d/models/godotJohn.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotJohn.blend1 -------------------------------------------------------------------------------- /quest_example/3d/models/godotJohn.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotJohn.glb -------------------------------------------------------------------------------- /quest_example/3d/models/godotJohn.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotJohn.glb.import -------------------------------------------------------------------------------- /quest_example/3d/models/godotPlate.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotPlate.glb -------------------------------------------------------------------------------- /quest_example/3d/models/godotPlate.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotPlate.glb.import -------------------------------------------------------------------------------- /quest_example/3d/models/godotTree.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotTree.blend -------------------------------------------------------------------------------- /quest_example/3d/models/godotTree.blend.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotTree.blend.import -------------------------------------------------------------------------------- /quest_example/3d/models/godotTree.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotTree.blend1 -------------------------------------------------------------------------------- /quest_example/3d/models/godotTree.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotTree.glb -------------------------------------------------------------------------------- /quest_example/3d/models/godotTree.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotTree.glb.import -------------------------------------------------------------------------------- /quest_example/3d/models/godotTrigger.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotTrigger.blend -------------------------------------------------------------------------------- /quest_example/3d/models/godotTrigger.blend.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotTrigger.blend.import -------------------------------------------------------------------------------- /quest_example/3d/models/godotTrigger.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotTrigger.blend1 -------------------------------------------------------------------------------- /quest_example/3d/models/godotTrigger.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotTrigger.glb -------------------------------------------------------------------------------- /quest_example/3d/models/godotTrigger.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotTrigger.glb.import -------------------------------------------------------------------------------- /quest_example/3d/models/godotWeapon.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotWeapon.blend -------------------------------------------------------------------------------- /quest_example/3d/models/godotWeapon.blend.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotWeapon.blend.import -------------------------------------------------------------------------------- /quest_example/3d/models/godotWeapon.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotWeapon.blend1 -------------------------------------------------------------------------------- /quest_example/3d/models/godotWeapon.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotWeapon.glb -------------------------------------------------------------------------------- /quest_example/3d/models/godotWeapon.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/godotWeapon.glb.import -------------------------------------------------------------------------------- /quest_example/3d/models/potions.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/potions.blend -------------------------------------------------------------------------------- /quest_example/3d/models/potions.blend.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/potions.blend.import -------------------------------------------------------------------------------- /quest_example/3d/models/potions.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/models/potions.blend1 -------------------------------------------------------------------------------- /quest_example/3d/player/Player.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/player/Player.gd -------------------------------------------------------------------------------- /quest_example/3d/player/Player.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bo5o337tmuyln 2 | -------------------------------------------------------------------------------- /quest_example/3d/player/Player.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/3d/player/Player.tscn -------------------------------------------------------------------------------- /quest_example/inventory_ui/InventoryUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/inventory_ui/InventoryUI.gd -------------------------------------------------------------------------------- /quest_example/inventory_ui/InventoryUI.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cw6ljriqxehju 2 | -------------------------------------------------------------------------------- /quest_example/inventory_ui/InventoryUI.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/inventory_ui/InventoryUI.tscn -------------------------------------------------------------------------------- /quest_example/inventory_ui/ItemUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/inventory_ui/ItemUI.gd -------------------------------------------------------------------------------- /quest_example/inventory_ui/ItemUI.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dwlp2txw7rrlx 2 | -------------------------------------------------------------------------------- /quest_example/inventory_ui/ItemUI.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/inventory_ui/ItemUI.tscn -------------------------------------------------------------------------------- /quest_example/quest_ui/QuestUi.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/quest_ui/QuestUi.gd -------------------------------------------------------------------------------- /quest_example/quest_ui/QuestUi.gd.uid: -------------------------------------------------------------------------------- 1 | uid://coa2bgpska58n 2 | -------------------------------------------------------------------------------- /quest_example/quest_ui/QuestUi.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/quest_ui/QuestUi.tscn -------------------------------------------------------------------------------- /quest_example/textures/Attention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Attention.png -------------------------------------------------------------------------------- /quest_example/textures/Attention.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Attention.png.import -------------------------------------------------------------------------------- /quest_example/textures/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Background.png -------------------------------------------------------------------------------- /quest_example/textures/Background.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Background.png.import -------------------------------------------------------------------------------- /quest_example/textures/BackgroundLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/BackgroundLeft.png -------------------------------------------------------------------------------- /quest_example/textures/BackgroundLeft.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/BackgroundLeft.png.import -------------------------------------------------------------------------------- /quest_example/textures/BackgroundRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/BackgroundRight.png -------------------------------------------------------------------------------- /quest_example/textures/BackgroundRight.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/BackgroundRight.png.import -------------------------------------------------------------------------------- /quest_example/textures/BackgroundSide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/BackgroundSide.png -------------------------------------------------------------------------------- /quest_example/textures/BackgroundSide.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/BackgroundSide.png.import -------------------------------------------------------------------------------- /quest_example/textures/Chest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Chest.png -------------------------------------------------------------------------------- /quest_example/textures/Chest.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Chest.png.import -------------------------------------------------------------------------------- /quest_example/textures/Destination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Destination.png -------------------------------------------------------------------------------- /quest_example/textures/Destination.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Destination.png.import -------------------------------------------------------------------------------- /quest_example/textures/Destination.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Destination.png~ -------------------------------------------------------------------------------- /quest_example/textures/Enemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Enemy.png -------------------------------------------------------------------------------- /quest_example/textures/Enemy.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Enemy.png.import -------------------------------------------------------------------------------- /quest_example/textures/Enemy.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Enemy.png~ -------------------------------------------------------------------------------- /quest_example/textures/Fir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Fir.png -------------------------------------------------------------------------------- /quest_example/textures/Fir.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Fir.png.import -------------------------------------------------------------------------------- /quest_example/textures/Girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Girl.png -------------------------------------------------------------------------------- /quest_example/textures/Girl.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Girl.png.import -------------------------------------------------------------------------------- /quest_example/textures/InventoryBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/InventoryBackground.png -------------------------------------------------------------------------------- /quest_example/textures/InventoryBackground.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/InventoryBackground.png.import -------------------------------------------------------------------------------- /quest_example/textures/InventoryBackgroundItem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/InventoryBackgroundItem.png -------------------------------------------------------------------------------- /quest_example/textures/InventoryBackgroundItem.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/InventoryBackgroundItem.png.import -------------------------------------------------------------------------------- /quest_example/textures/Item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Item.png -------------------------------------------------------------------------------- /quest_example/textures/Item.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Item.png.import -------------------------------------------------------------------------------- /quest_example/textures/ItemBig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/ItemBig.png -------------------------------------------------------------------------------- /quest_example/textures/ItemBig.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/ItemBig.png.import -------------------------------------------------------------------------------- /quest_example/textures/John.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/John.png -------------------------------------------------------------------------------- /quest_example/textures/John.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/John.png.import -------------------------------------------------------------------------------- /quest_example/textures/John.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/John.png~ -------------------------------------------------------------------------------- /quest_example/textures/Player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Player.png -------------------------------------------------------------------------------- /quest_example/textures/Player.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Player.png.import -------------------------------------------------------------------------------- /quest_example/textures/Player.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Player.png~ -------------------------------------------------------------------------------- /quest_example/textures/Potions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Potions.png -------------------------------------------------------------------------------- /quest_example/textures/Potions.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Potions.png.import -------------------------------------------------------------------------------- /quest_example/textures/Quest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Quest.png -------------------------------------------------------------------------------- /quest_example/textures/Quest.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Quest.png.import -------------------------------------------------------------------------------- /quest_example/textures/Quest.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Quest.png~ -------------------------------------------------------------------------------- /quest_example/textures/QuestNow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/QuestNow.png -------------------------------------------------------------------------------- /quest_example/textures/QuestNow.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/QuestNow.png.import -------------------------------------------------------------------------------- /quest_example/textures/QuestNow.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/QuestNow.png~ -------------------------------------------------------------------------------- /quest_example/textures/Sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Sword.png -------------------------------------------------------------------------------- /quest_example/textures/Sword.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Sword.png.import -------------------------------------------------------------------------------- /quest_example/textures/Trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Trigger.png -------------------------------------------------------------------------------- /quest_example/textures/Trigger.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Trigger.png.import -------------------------------------------------------------------------------- /quest_example/textures/Trigger.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4QuestEditor/HEAD/quest_example/textures/Trigger.png~ --------------------------------------------------------------------------------