├── .editorconfig ├── .gitattributes ├── .gitconfig ├── .gitignore ├── Config ├── BaseDlgSystem.ini ├── DefaultDlgSystem.ini └── FilterPlugin.ini ├── Content ├── Example_BP_Docs.uasset ├── Example_BP_Participant.uasset ├── Example_Struct_DialogueData.uasset └── Icons │ ├── Condition_96x.png │ ├── DebugTools_40x.png │ ├── Dialogue_ShowPrimarySecondaryEdges_40x.png │ ├── Discord_96x.png │ ├── DlgConditionCustom_16x.png │ ├── DlgConditionCustom_64x.png │ ├── DlgDialogue_16x.png │ ├── DlgDialogue_64x.png │ ├── DlgEventCustom_16x.png │ ├── DlgEventCustom_64x.png │ ├── DlgNodeData_16x.png │ ├── DlgNodeData_64x.png │ ├── DlgTextArgumentCustom_16x.png │ ├── DlgTextArgumentCustom_64x.png │ ├── Event_96x.png │ ├── Forum_96x.png │ ├── Generic_96x.png │ ├── LICENSE.txt │ ├── Marketplace_96x.png │ ├── NotYet_128x_64x.png │ ├── NotYet_96x.png │ ├── QuestionMark_16x.png │ ├── Speaker_96x.png │ ├── Wiki_96x.png │ └── raw │ ├── condition.png │ ├── condition_with_conversation.png │ ├── conversation.png │ ├── data.png │ ├── data_with_conversation.png │ ├── event.png │ ├── event_with_conversation.png │ ├── text.png │ ├── text_with_conversation.png │ └── workspace.kra ├── DlgSystem.uplugin ├── Docs ├── CHANGELOG.md ├── EditorTypesExplanation.md └── README.md ├── LICENSE.txt ├── README.md ├── Resources ├── Icon128.png └── LICENSE.txt ├── Source ├── DlgSystem │ ├── DlgCondition.cpp │ ├── DlgCondition.h │ ├── DlgConditionCustom.h │ ├── DlgConstants.h │ ├── DlgContext.cpp │ ├── DlgContext.h │ ├── DlgDialogue.cpp │ ├── DlgDialogue.h │ ├── DlgDialogueParticipant.h │ ├── DlgDialogueParticipantData.cpp │ ├── DlgDialogueParticipantData.h │ ├── DlgEdge.cpp │ ├── DlgEdge.h │ ├── DlgEvent.cpp │ ├── DlgEvent.h │ ├── DlgEventCustom.h │ ├── DlgHelper.cpp │ ├── DlgHelper.h │ ├── DlgLocalizationHelper.cpp │ ├── DlgLocalizationHelper.h │ ├── DlgManager.cpp │ ├── DlgManager.h │ ├── DlgMemory.cpp │ ├── DlgMemory.h │ ├── DlgNodeData.h │ ├── DlgObject.cpp │ ├── DlgObject.h │ ├── DlgParticipantName.h │ ├── DlgSystem.Build.cs │ ├── DlgSystemModule.cpp │ ├── DlgSystemModule.h │ ├── DlgSystemSettings.cpp │ ├── DlgSystemSettings.h │ ├── DlgTextArgument.cpp │ ├── DlgTextArgument.h │ ├── DlgTextArgumentCustom.h │ ├── GameplayDebugger │ │ ├── DlgDataDisplayActorProperties.h │ │ ├── DlgDataDisplayTreeNode.cpp │ │ ├── DlgDataDisplayTreeNode.h │ │ ├── DlgGameplayDebuggerCategory.cpp │ │ ├── DlgGameplayDebuggerCategory.h │ │ ├── SDlgDataDisplay.cpp │ │ ├── SDlgDataDisplay.h │ │ ├── SDlgDataPropertyValues.cpp │ │ └── SDlgDataPropertyValues.h │ ├── IDlgEditorAccess.h │ ├── IDlgSystemModule.h │ ├── IO │ │ ├── DlgConfigParser.cpp │ │ ├── DlgConfigParser.h │ │ ├── DlgConfigWriter.cpp │ │ ├── DlgConfigWriter.h │ │ ├── DlgJsonParser.cpp │ │ ├── DlgJsonParser.h │ │ ├── DlgJsonWriter.cpp │ │ ├── DlgJsonWriter.h │ │ ├── IDlgParser.h │ │ └── IDlgWriter.h │ ├── Logging │ │ ├── DlgLogger.cpp │ │ ├── DlgLogger.h │ │ ├── INYLogger.cpp │ │ └── INYLogger.h │ ├── NYEngineVersionHelpers.h │ ├── NYReflectionHelper.h │ ├── Nodes │ │ ├── DlgNode.cpp │ │ ├── DlgNode.h │ │ ├── DlgNode_Custom.h │ │ ├── DlgNode_End.cpp │ │ ├── DlgNode_End.h │ │ ├── DlgNode_Proxy.cpp │ │ ├── DlgNode_Proxy.h │ │ ├── DlgNode_Selector.cpp │ │ ├── DlgNode_Selector.h │ │ ├── DlgNode_Speech.cpp │ │ ├── DlgNode_Speech.h │ │ ├── DlgNode_SpeechSequence.cpp │ │ ├── DlgNode_SpeechSequence.h │ │ ├── DlgNode_Start.cpp │ │ └── DlgNode_Start.h │ ├── Tests │ │ ├── DlgIOTester.cpp │ │ ├── DlgIOTesterTypes.cpp │ │ ├── DlgIOTesterTypes.h │ │ ├── DlgTesterHelper.cpp │ │ └── DlgTesterHelper.h │ └── TreeViewHelpers │ │ ├── DlgTreeViewHelper.h │ │ ├── DlgTreeViewNode.h │ │ ├── DlgTreeViewParticipantProperties.h │ │ └── DlgTreeViewVariableProperties.h └── DlgSystemEditor │ ├── AssetTypeActions │ ├── DlgBlueprintDerivedAssetTypeActions.h │ ├── DlgDialogueAssetTypeActions.cpp │ ├── DlgDialogueAssetTypeActions.h │ └── DlgParticipantsAssetTypeActions.h │ ├── BlueprintNodes │ ├── DialogueK2Node_Redirects.h │ ├── DialogueK2Node_Select.cpp │ ├── DialogueK2Node_Select.h │ ├── DialogueK2Node_SwitchDialogueCallback.cpp │ ├── DialogueK2Node_SwitchDialogueCallback.h │ ├── DialogueK2Node_SwitchDialogueCallbackVariants.cpp │ ├── DialogueK2Node_SwitchDialogueCallbackVariants.h │ ├── DlgBlueprintUtilities.h │ ├── SGraphNode_DialogueK2Select.cpp │ ├── SGraphNode_DialogueK2Select.h │ ├── SGraphNode_DialogueK2Switch.cpp │ └── SGraphNode_DialogueK2Switch.h │ ├── Browser │ ├── DialogueTreeProperties │ │ ├── DlgBrowserTreeParticipantProperties.h │ │ ├── DlgBrowserTreeVariableProperties.cpp │ │ └── DlgBrowserTreeVariableProperties.h │ ├── DlgBrowserTreeNode.cpp │ ├── DlgBrowserTreeNode.h │ ├── DlgBrowserUtilities.cpp │ ├── DlgBrowserUtilities.h │ ├── SDlgBrowser.cpp │ └── SDlgBrowser.h │ ├── Commandlets │ ├── DlgCommandletHelper.h │ ├── DlgExportTwineCommandlet.cpp │ ├── DlgExportTwineCommandlet.h │ ├── DlgHumanReadableTextCommandlet.cpp │ ├── DlgHumanReadableTextCommandlet.h │ ├── DlgStatsCommandlet.cpp │ └── DlgStatsCommandlet.h │ ├── DlgCommands.cpp │ ├── DlgCommands.h │ ├── DlgContentBrowserExtensions.cpp │ ├── DlgContentBrowserExtensions.h │ ├── DlgEditorAccess.cpp │ ├── DlgEditorAccess.h │ ├── DlgEditorUtilities.cpp │ ├── DlgEditorUtilities.h │ ├── DlgStyle.cpp │ ├── DlgStyle.h │ ├── DlgSystemEditor.Build.cs │ ├── DlgSystemEditorModule.cpp │ ├── DlgSystemEditorModule.h │ ├── DlgThumbnailRenderer.cpp │ ├── DlgThumbnailRenderer.h │ ├── Editor │ ├── DetailsPanel │ │ ├── DlgAsset_Details.cpp │ │ ├── DlgAsset_Details.h │ │ ├── DlgCondition_Details.cpp │ │ ├── DlgCondition_Details.h │ │ ├── DlgDetailsPanelUtils.cpp │ │ ├── DlgDetailsPanelUtils.h │ │ ├── DlgEdge_Details.cpp │ │ ├── DlgEdge_Details.h │ │ ├── DlgEvent_Details.cpp │ │ ├── DlgEvent_Details.h │ │ ├── DlgGraphNode_Details.cpp │ │ ├── DlgGraphNode_Details.h │ │ ├── DlgNode_Details.cpp │ │ ├── DlgNode_Details.h │ │ ├── DlgParticipantName_Details.cpp │ │ ├── DlgParticipantName_Details.h │ │ ├── DlgSpeechSequenceEntry_Details.cpp │ │ ├── DlgSpeechSequenceEntry_Details.h │ │ ├── DlgTextArgument_Details.cpp │ │ ├── DlgTextArgument_Details.h │ │ └── Widgets │ │ │ ├── DlgBase_CustomRowHelper.cpp │ │ │ ├── DlgBase_CustomRowHelper.h │ │ │ ├── DlgEditableTextPropertyHandle.h │ │ │ ├── DlgEnumTypeWithObject_CustomRowHelper.cpp │ │ │ ├── DlgEnumTypeWithObject_CustomRowHelper.h │ │ │ ├── DlgIntTextBox_CustomRowHelper.cpp │ │ │ ├── DlgIntTextBox_CustomRowHelper.h │ │ │ ├── DlgMultiLineEditableTextBox_CustomRowHelper.cpp │ │ │ ├── DlgMultiLineEditableTextBox_CustomRowHelper.h │ │ │ ├── DlgObject_CustomRowHelper.cpp │ │ │ ├── DlgObject_CustomRowHelper.h │ │ │ ├── DlgTextPropertyPickList_CustomRowHelper.cpp │ │ │ ├── DlgTextPropertyPickList_CustomRowHelper.h │ │ │ ├── SDlgTextPropertyEditableTextBox.cpp │ │ │ ├── SDlgTextPropertyEditableTextBox.h │ │ │ ├── SDlgTextPropertyPickList.cpp │ │ │ └── SDlgTextPropertyPickList.h │ ├── DlgCompiler.cpp │ ├── DlgCompiler.h │ ├── DlgEditor.cpp │ ├── DlgEditor.h │ ├── Graph │ │ ├── DialogueGraph.cpp │ │ ├── DialogueGraph.h │ │ ├── DialogueGraphSchema.cpp │ │ ├── DialogueGraphSchema.h │ │ ├── DlgGraphConnectionDrawingPolicy.cpp │ │ ├── DlgGraphConnectionDrawingPolicy.h │ │ └── SchemaActions │ │ │ ├── DlgConvertSpeechNodesToSpeechSequence_GraphSchemaAction.cpp │ │ │ ├── DlgConvertSpeechNodesToSpeechSequence_GraphSchemaAction.h │ │ │ ├── DlgConvertSpeechSequenceNodeToSpeechNodes_GraphSchemaAction.cpp │ │ │ ├── DlgConvertSpeechSequenceNodeToSpeechNodes_GraphSchemaAction.h │ │ │ ├── DlgNewComment_GraphSchemaAction.cpp │ │ │ ├── DlgNewComment_GraphSchemaAction.h │ │ │ ├── DlgNewNode_GraphSchemaAction.cpp │ │ │ └── DlgNewNode_GraphSchemaAction.h │ ├── IDlgEditor.h │ ├── Nodes │ │ ├── DialogueGraphNode.cpp │ │ ├── DialogueGraphNode.h │ │ ├── DialogueGraphNode_Base.cpp │ │ ├── DialogueGraphNode_Base.h │ │ ├── DialogueGraphNode_Edge.cpp │ │ ├── DialogueGraphNode_Edge.h │ │ ├── DialogueGraphNode_Root.cpp │ │ ├── DialogueGraphNode_Root.h │ │ ├── SDlgGraphNode.cpp │ │ ├── SDlgGraphNode.h │ │ ├── SDlgGraphNode_Base.cpp │ │ ├── SDlgGraphNode_Base.h │ │ ├── SDlgGraphNode_Edge.cpp │ │ ├── SDlgGraphNode_Edge.h │ │ ├── SDlgGraphNode_Root.cpp │ │ ├── SDlgGraphNode_Root.h │ │ ├── SDlgGraphPin.cpp │ │ ├── SDlgGraphPin.h │ │ ├── SDlgNodeOverlayWidget.cpp │ │ └── SDlgNodeOverlayWidget.h │ ├── SDlgDialogueActionMenu.cpp │ ├── SDlgDialogueActionMenu.h │ ├── SDlgEditorPalette.cpp │ └── SDlgEditorPalette.h │ ├── Factories │ ├── DlgAssetFactory.cpp │ ├── DlgAssetFactory.h │ ├── DlgClassViewerFilters.h │ ├── DlgConditionCustomFactory.cpp │ ├── DlgConditionCustomFactory.h │ ├── DlgEventCustomFactory.cpp │ ├── DlgEventCustomFactory.h │ ├── DlgGraphFactories.cpp │ ├── DlgGraphFactories.h │ ├── DlgNodeDataFactory.cpp │ ├── DlgNodeDataFactory.h │ ├── DlgTextArgumentCustomFactory.cpp │ └── DlgTextArgumentCustomFactory.h │ ├── IDlgSystemEditorModule.h │ └── Search │ ├── DlgSearchManager.cpp │ ├── DlgSearchManager.h │ ├── DlgSearchResult.cpp │ ├── DlgSearchResult.h │ ├── DlgSearchUtilities.cpp │ ├── DlgSearchUtilities.h │ ├── SDlgFindInDialogues.cpp │ └── SDlgFindInDialogues.h └── Tools ├── DlgSpellcheckJsonHumanText.py └── DlgTwineToJsonHumanText.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/.gitconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /Config/BaseDlgSystem.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Config/BaseDlgSystem.ini -------------------------------------------------------------------------------- /Config/DefaultDlgSystem.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Config/DefaultDlgSystem.ini -------------------------------------------------------------------------------- /Config/FilterPlugin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Config/FilterPlugin.ini -------------------------------------------------------------------------------- /Content/Example_BP_Docs.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Example_BP_Docs.uasset -------------------------------------------------------------------------------- /Content/Example_BP_Participant.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Example_BP_Participant.uasset -------------------------------------------------------------------------------- /Content/Example_Struct_DialogueData.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Example_Struct_DialogueData.uasset -------------------------------------------------------------------------------- /Content/Icons/Condition_96x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/Condition_96x.png -------------------------------------------------------------------------------- /Content/Icons/DebugTools_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/DebugTools_40x.png -------------------------------------------------------------------------------- /Content/Icons/Dialogue_ShowPrimarySecondaryEdges_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/Dialogue_ShowPrimarySecondaryEdges_40x.png -------------------------------------------------------------------------------- /Content/Icons/Discord_96x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/Discord_96x.png -------------------------------------------------------------------------------- /Content/Icons/DlgConditionCustom_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/DlgConditionCustom_16x.png -------------------------------------------------------------------------------- /Content/Icons/DlgConditionCustom_64x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/DlgConditionCustom_64x.png -------------------------------------------------------------------------------- /Content/Icons/DlgDialogue_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/DlgDialogue_16x.png -------------------------------------------------------------------------------- /Content/Icons/DlgDialogue_64x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/DlgDialogue_64x.png -------------------------------------------------------------------------------- /Content/Icons/DlgEventCustom_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/DlgEventCustom_16x.png -------------------------------------------------------------------------------- /Content/Icons/DlgEventCustom_64x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/DlgEventCustom_64x.png -------------------------------------------------------------------------------- /Content/Icons/DlgNodeData_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/DlgNodeData_16x.png -------------------------------------------------------------------------------- /Content/Icons/DlgNodeData_64x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/DlgNodeData_64x.png -------------------------------------------------------------------------------- /Content/Icons/DlgTextArgumentCustom_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/DlgTextArgumentCustom_16x.png -------------------------------------------------------------------------------- /Content/Icons/DlgTextArgumentCustom_64x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/DlgTextArgumentCustom_64x.png -------------------------------------------------------------------------------- /Content/Icons/Event_96x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/Event_96x.png -------------------------------------------------------------------------------- /Content/Icons/Forum_96x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/Forum_96x.png -------------------------------------------------------------------------------- /Content/Icons/Generic_96x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/Generic_96x.png -------------------------------------------------------------------------------- /Content/Icons/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/LICENSE.txt -------------------------------------------------------------------------------- /Content/Icons/Marketplace_96x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/Marketplace_96x.png -------------------------------------------------------------------------------- /Content/Icons/NotYet_128x_64x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/NotYet_128x_64x.png -------------------------------------------------------------------------------- /Content/Icons/NotYet_96x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/NotYet_96x.png -------------------------------------------------------------------------------- /Content/Icons/QuestionMark_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/QuestionMark_16x.png -------------------------------------------------------------------------------- /Content/Icons/Speaker_96x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/Speaker_96x.png -------------------------------------------------------------------------------- /Content/Icons/Wiki_96x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/Wiki_96x.png -------------------------------------------------------------------------------- /Content/Icons/raw/condition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/raw/condition.png -------------------------------------------------------------------------------- /Content/Icons/raw/condition_with_conversation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/raw/condition_with_conversation.png -------------------------------------------------------------------------------- /Content/Icons/raw/conversation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/raw/conversation.png -------------------------------------------------------------------------------- /Content/Icons/raw/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/raw/data.png -------------------------------------------------------------------------------- /Content/Icons/raw/data_with_conversation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/raw/data_with_conversation.png -------------------------------------------------------------------------------- /Content/Icons/raw/event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/raw/event.png -------------------------------------------------------------------------------- /Content/Icons/raw/event_with_conversation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/raw/event_with_conversation.png -------------------------------------------------------------------------------- /Content/Icons/raw/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/raw/text.png -------------------------------------------------------------------------------- /Content/Icons/raw/text_with_conversation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/raw/text_with_conversation.png -------------------------------------------------------------------------------- /Content/Icons/raw/workspace.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Content/Icons/raw/workspace.kra -------------------------------------------------------------------------------- /DlgSystem.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/DlgSystem.uplugin -------------------------------------------------------------------------------- /Docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Docs/CHANGELOG.md -------------------------------------------------------------------------------- /Docs/EditorTypesExplanation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Docs/EditorTypesExplanation.md -------------------------------------------------------------------------------- /Docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Docs/README.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Resources/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Resources/LICENSE.txt -------------------------------------------------------------------------------- /Source/DlgSystem/DlgCondition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgCondition.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/DlgCondition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgCondition.h -------------------------------------------------------------------------------- /Source/DlgSystem/DlgConditionCustom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgConditionCustom.h -------------------------------------------------------------------------------- /Source/DlgSystem/DlgConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgConstants.h -------------------------------------------------------------------------------- /Source/DlgSystem/DlgContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgContext.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/DlgContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgContext.h -------------------------------------------------------------------------------- /Source/DlgSystem/DlgDialogue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgDialogue.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/DlgDialogue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgDialogue.h -------------------------------------------------------------------------------- /Source/DlgSystem/DlgDialogueParticipant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgDialogueParticipant.h -------------------------------------------------------------------------------- /Source/DlgSystem/DlgDialogueParticipantData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgDialogueParticipantData.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/DlgDialogueParticipantData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgDialogueParticipantData.h -------------------------------------------------------------------------------- /Source/DlgSystem/DlgEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgEdge.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/DlgEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgEdge.h -------------------------------------------------------------------------------- /Source/DlgSystem/DlgEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgEvent.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/DlgEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgEvent.h -------------------------------------------------------------------------------- /Source/DlgSystem/DlgEventCustom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgEventCustom.h -------------------------------------------------------------------------------- /Source/DlgSystem/DlgHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgHelper.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/DlgHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgHelper.h -------------------------------------------------------------------------------- /Source/DlgSystem/DlgLocalizationHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgLocalizationHelper.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/DlgLocalizationHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgLocalizationHelper.h -------------------------------------------------------------------------------- /Source/DlgSystem/DlgManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgManager.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/DlgManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgManager.h -------------------------------------------------------------------------------- /Source/DlgSystem/DlgMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgMemory.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/DlgMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgMemory.h -------------------------------------------------------------------------------- /Source/DlgSystem/DlgNodeData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgNodeData.h -------------------------------------------------------------------------------- /Source/DlgSystem/DlgObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgObject.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/DlgObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgObject.h -------------------------------------------------------------------------------- /Source/DlgSystem/DlgParticipantName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgParticipantName.h -------------------------------------------------------------------------------- /Source/DlgSystem/DlgSystem.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgSystem.Build.cs -------------------------------------------------------------------------------- /Source/DlgSystem/DlgSystemModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgSystemModule.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/DlgSystemModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgSystemModule.h -------------------------------------------------------------------------------- /Source/DlgSystem/DlgSystemSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgSystemSettings.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/DlgSystemSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgSystemSettings.h -------------------------------------------------------------------------------- /Source/DlgSystem/DlgTextArgument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgTextArgument.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/DlgTextArgument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgTextArgument.h -------------------------------------------------------------------------------- /Source/DlgSystem/DlgTextArgumentCustom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/DlgTextArgumentCustom.h -------------------------------------------------------------------------------- /Source/DlgSystem/GameplayDebugger/DlgDataDisplayActorProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/GameplayDebugger/DlgDataDisplayActorProperties.h -------------------------------------------------------------------------------- /Source/DlgSystem/GameplayDebugger/DlgDataDisplayTreeNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/GameplayDebugger/DlgDataDisplayTreeNode.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/GameplayDebugger/DlgDataDisplayTreeNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/GameplayDebugger/DlgDataDisplayTreeNode.h -------------------------------------------------------------------------------- /Source/DlgSystem/GameplayDebugger/DlgGameplayDebuggerCategory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/GameplayDebugger/DlgGameplayDebuggerCategory.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/GameplayDebugger/DlgGameplayDebuggerCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/GameplayDebugger/DlgGameplayDebuggerCategory.h -------------------------------------------------------------------------------- /Source/DlgSystem/GameplayDebugger/SDlgDataDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/GameplayDebugger/SDlgDataDisplay.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/GameplayDebugger/SDlgDataDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/GameplayDebugger/SDlgDataDisplay.h -------------------------------------------------------------------------------- /Source/DlgSystem/GameplayDebugger/SDlgDataPropertyValues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/GameplayDebugger/SDlgDataPropertyValues.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/GameplayDebugger/SDlgDataPropertyValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/GameplayDebugger/SDlgDataPropertyValues.h -------------------------------------------------------------------------------- /Source/DlgSystem/IDlgEditorAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/IDlgEditorAccess.h -------------------------------------------------------------------------------- /Source/DlgSystem/IDlgSystemModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/IDlgSystemModule.h -------------------------------------------------------------------------------- /Source/DlgSystem/IO/DlgConfigParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/IO/DlgConfigParser.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/IO/DlgConfigParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/IO/DlgConfigParser.h -------------------------------------------------------------------------------- /Source/DlgSystem/IO/DlgConfigWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/IO/DlgConfigWriter.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/IO/DlgConfigWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/IO/DlgConfigWriter.h -------------------------------------------------------------------------------- /Source/DlgSystem/IO/DlgJsonParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/IO/DlgJsonParser.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/IO/DlgJsonParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/IO/DlgJsonParser.h -------------------------------------------------------------------------------- /Source/DlgSystem/IO/DlgJsonWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/IO/DlgJsonWriter.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/IO/DlgJsonWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/IO/DlgJsonWriter.h -------------------------------------------------------------------------------- /Source/DlgSystem/IO/IDlgParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/IO/IDlgParser.h -------------------------------------------------------------------------------- /Source/DlgSystem/IO/IDlgWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/IO/IDlgWriter.h -------------------------------------------------------------------------------- /Source/DlgSystem/Logging/DlgLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/Logging/DlgLogger.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/Logging/DlgLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/Logging/DlgLogger.h -------------------------------------------------------------------------------- /Source/DlgSystem/Logging/INYLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/Logging/INYLogger.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/Logging/INYLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/Logging/INYLogger.h -------------------------------------------------------------------------------- /Source/DlgSystem/NYEngineVersionHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/NYEngineVersionHelpers.h -------------------------------------------------------------------------------- /Source/DlgSystem/NYReflectionHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/NYReflectionHelper.h -------------------------------------------------------------------------------- /Source/DlgSystem/Nodes/DlgNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/Nodes/DlgNode.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/Nodes/DlgNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/Nodes/DlgNode.h -------------------------------------------------------------------------------- /Source/DlgSystem/Nodes/DlgNode_Custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/Nodes/DlgNode_Custom.h -------------------------------------------------------------------------------- /Source/DlgSystem/Nodes/DlgNode_End.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/Nodes/DlgNode_End.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/Nodes/DlgNode_End.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/Nodes/DlgNode_End.h -------------------------------------------------------------------------------- /Source/DlgSystem/Nodes/DlgNode_Proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/Nodes/DlgNode_Proxy.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/Nodes/DlgNode_Proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/Nodes/DlgNode_Proxy.h -------------------------------------------------------------------------------- /Source/DlgSystem/Nodes/DlgNode_Selector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/Nodes/DlgNode_Selector.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/Nodes/DlgNode_Selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/Nodes/DlgNode_Selector.h -------------------------------------------------------------------------------- /Source/DlgSystem/Nodes/DlgNode_Speech.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/Nodes/DlgNode_Speech.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/Nodes/DlgNode_Speech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/Nodes/DlgNode_Speech.h -------------------------------------------------------------------------------- /Source/DlgSystem/Nodes/DlgNode_SpeechSequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/Nodes/DlgNode_SpeechSequence.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/Nodes/DlgNode_SpeechSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/Nodes/DlgNode_SpeechSequence.h -------------------------------------------------------------------------------- /Source/DlgSystem/Nodes/DlgNode_Start.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/Nodes/DlgNode_Start.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/Nodes/DlgNode_Start.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/Nodes/DlgNode_Start.h -------------------------------------------------------------------------------- /Source/DlgSystem/Tests/DlgIOTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/Tests/DlgIOTester.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/Tests/DlgIOTesterTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/Tests/DlgIOTesterTypes.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/Tests/DlgIOTesterTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/Tests/DlgIOTesterTypes.h -------------------------------------------------------------------------------- /Source/DlgSystem/Tests/DlgTesterHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/Tests/DlgTesterHelper.cpp -------------------------------------------------------------------------------- /Source/DlgSystem/Tests/DlgTesterHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/Tests/DlgTesterHelper.h -------------------------------------------------------------------------------- /Source/DlgSystem/TreeViewHelpers/DlgTreeViewHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/TreeViewHelpers/DlgTreeViewHelper.h -------------------------------------------------------------------------------- /Source/DlgSystem/TreeViewHelpers/DlgTreeViewNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/TreeViewHelpers/DlgTreeViewNode.h -------------------------------------------------------------------------------- /Source/DlgSystem/TreeViewHelpers/DlgTreeViewParticipantProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/TreeViewHelpers/DlgTreeViewParticipantProperties.h -------------------------------------------------------------------------------- /Source/DlgSystem/TreeViewHelpers/DlgTreeViewVariableProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystem/TreeViewHelpers/DlgTreeViewVariableProperties.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/AssetTypeActions/DlgBlueprintDerivedAssetTypeActions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/AssetTypeActions/DlgBlueprintDerivedAssetTypeActions.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/AssetTypeActions/DlgDialogueAssetTypeActions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/AssetTypeActions/DlgDialogueAssetTypeActions.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/AssetTypeActions/DlgDialogueAssetTypeActions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/AssetTypeActions/DlgDialogueAssetTypeActions.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/AssetTypeActions/DlgParticipantsAssetTypeActions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/AssetTypeActions/DlgParticipantsAssetTypeActions.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/BlueprintNodes/DialogueK2Node_Redirects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/BlueprintNodes/DialogueK2Node_Redirects.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/BlueprintNodes/DialogueK2Node_Select.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/BlueprintNodes/DialogueK2Node_Select.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/BlueprintNodes/DialogueK2Node_Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/BlueprintNodes/DialogueK2Node_Select.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/BlueprintNodes/DialogueK2Node_SwitchDialogueCallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/BlueprintNodes/DialogueK2Node_SwitchDialogueCallback.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/BlueprintNodes/DialogueK2Node_SwitchDialogueCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/BlueprintNodes/DialogueK2Node_SwitchDialogueCallback.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/BlueprintNodes/DialogueK2Node_SwitchDialogueCallbackVariants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/BlueprintNodes/DialogueK2Node_SwitchDialogueCallbackVariants.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/BlueprintNodes/DialogueK2Node_SwitchDialogueCallbackVariants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/BlueprintNodes/DialogueK2Node_SwitchDialogueCallbackVariants.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/BlueprintNodes/DlgBlueprintUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/BlueprintNodes/DlgBlueprintUtilities.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/BlueprintNodes/SGraphNode_DialogueK2Select.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/BlueprintNodes/SGraphNode_DialogueK2Select.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/BlueprintNodes/SGraphNode_DialogueK2Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/BlueprintNodes/SGraphNode_DialogueK2Select.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/BlueprintNodes/SGraphNode_DialogueK2Switch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/BlueprintNodes/SGraphNode_DialogueK2Switch.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/BlueprintNodes/SGraphNode_DialogueK2Switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/BlueprintNodes/SGraphNode_DialogueK2Switch.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Browser/DialogueTreeProperties/DlgBrowserTreeParticipantProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Browser/DialogueTreeProperties/DlgBrowserTreeParticipantProperties.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Browser/DialogueTreeProperties/DlgBrowserTreeVariableProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Browser/DialogueTreeProperties/DlgBrowserTreeVariableProperties.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Browser/DialogueTreeProperties/DlgBrowserTreeVariableProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Browser/DialogueTreeProperties/DlgBrowserTreeVariableProperties.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Browser/DlgBrowserTreeNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Browser/DlgBrowserTreeNode.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Browser/DlgBrowserTreeNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Browser/DlgBrowserTreeNode.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Browser/DlgBrowserUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Browser/DlgBrowserUtilities.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Browser/DlgBrowserUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Browser/DlgBrowserUtilities.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Browser/SDlgBrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Browser/SDlgBrowser.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Browser/SDlgBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Browser/SDlgBrowser.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Commandlets/DlgCommandletHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Commandlets/DlgCommandletHelper.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Commandlets/DlgExportTwineCommandlet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Commandlets/DlgExportTwineCommandlet.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Commandlets/DlgExportTwineCommandlet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Commandlets/DlgExportTwineCommandlet.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Commandlets/DlgHumanReadableTextCommandlet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Commandlets/DlgHumanReadableTextCommandlet.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Commandlets/DlgHumanReadableTextCommandlet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Commandlets/DlgHumanReadableTextCommandlet.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Commandlets/DlgStatsCommandlet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Commandlets/DlgStatsCommandlet.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Commandlets/DlgStatsCommandlet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Commandlets/DlgStatsCommandlet.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/DlgCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/DlgCommands.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/DlgCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/DlgCommands.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/DlgContentBrowserExtensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/DlgContentBrowserExtensions.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/DlgContentBrowserExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/DlgContentBrowserExtensions.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/DlgEditorAccess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/DlgEditorAccess.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/DlgEditorAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/DlgEditorAccess.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/DlgEditorUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/DlgEditorUtilities.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/DlgEditorUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/DlgEditorUtilities.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/DlgStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/DlgStyle.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/DlgStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/DlgStyle.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/DlgSystemEditor.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/DlgSystemEditor.Build.cs -------------------------------------------------------------------------------- /Source/DlgSystemEditor/DlgSystemEditorModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/DlgSystemEditorModule.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/DlgSystemEditorModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/DlgSystemEditorModule.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/DlgThumbnailRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/DlgThumbnailRenderer.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/DlgThumbnailRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/DlgThumbnailRenderer.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/DlgAsset_Details.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/DlgAsset_Details.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/DlgAsset_Details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/DlgAsset_Details.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/DlgCondition_Details.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/DlgCondition_Details.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/DlgCondition_Details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/DlgCondition_Details.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/DlgDetailsPanelUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/DlgDetailsPanelUtils.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/DlgDetailsPanelUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/DlgDetailsPanelUtils.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/DlgEdge_Details.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/DlgEdge_Details.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/DlgEdge_Details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/DlgEdge_Details.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/DlgEvent_Details.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/DlgEvent_Details.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/DlgEvent_Details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/DlgEvent_Details.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/DlgGraphNode_Details.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/DlgGraphNode_Details.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/DlgGraphNode_Details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/DlgGraphNode_Details.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/DlgNode_Details.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/DlgNode_Details.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/DlgNode_Details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/DlgNode_Details.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/DlgParticipantName_Details.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/DlgParticipantName_Details.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/DlgParticipantName_Details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/DlgParticipantName_Details.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/DlgSpeechSequenceEntry_Details.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/DlgSpeechSequenceEntry_Details.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/DlgSpeechSequenceEntry_Details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/DlgSpeechSequenceEntry_Details.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/DlgTextArgument_Details.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/DlgTextArgument_Details.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/DlgTextArgument_Details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/DlgTextArgument_Details.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/DlgBase_CustomRowHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/DlgBase_CustomRowHelper.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/DlgBase_CustomRowHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/DlgBase_CustomRowHelper.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/DlgEditableTextPropertyHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/DlgEditableTextPropertyHandle.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/DlgEnumTypeWithObject_CustomRowHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/DlgEnumTypeWithObject_CustomRowHelper.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/DlgEnumTypeWithObject_CustomRowHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/DlgEnumTypeWithObject_CustomRowHelper.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/DlgIntTextBox_CustomRowHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/DlgIntTextBox_CustomRowHelper.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/DlgIntTextBox_CustomRowHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/DlgIntTextBox_CustomRowHelper.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/DlgMultiLineEditableTextBox_CustomRowHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/DlgMultiLineEditableTextBox_CustomRowHelper.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/DlgMultiLineEditableTextBox_CustomRowHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/DlgMultiLineEditableTextBox_CustomRowHelper.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/DlgObject_CustomRowHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/DlgObject_CustomRowHelper.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/DlgObject_CustomRowHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/DlgObject_CustomRowHelper.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/DlgTextPropertyPickList_CustomRowHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/DlgTextPropertyPickList_CustomRowHelper.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/DlgTextPropertyPickList_CustomRowHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/DlgTextPropertyPickList_CustomRowHelper.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/SDlgTextPropertyEditableTextBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/SDlgTextPropertyEditableTextBox.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/SDlgTextPropertyEditableTextBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/SDlgTextPropertyEditableTextBox.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/SDlgTextPropertyPickList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/SDlgTextPropertyPickList.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/SDlgTextPropertyPickList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DetailsPanel/Widgets/SDlgTextPropertyPickList.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DlgCompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DlgCompiler.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DlgCompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DlgCompiler.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DlgEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DlgEditor.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/DlgEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/DlgEditor.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Graph/DialogueGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Graph/DialogueGraph.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Graph/DialogueGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Graph/DialogueGraph.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Graph/DialogueGraphSchema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Graph/DialogueGraphSchema.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Graph/DialogueGraphSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Graph/DialogueGraphSchema.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Graph/DlgGraphConnectionDrawingPolicy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Graph/DlgGraphConnectionDrawingPolicy.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Graph/DlgGraphConnectionDrawingPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Graph/DlgGraphConnectionDrawingPolicy.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Graph/SchemaActions/DlgConvertSpeechNodesToSpeechSequence_GraphSchemaAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Graph/SchemaActions/DlgConvertSpeechNodesToSpeechSequence_GraphSchemaAction.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Graph/SchemaActions/DlgConvertSpeechNodesToSpeechSequence_GraphSchemaAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Graph/SchemaActions/DlgConvertSpeechNodesToSpeechSequence_GraphSchemaAction.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Graph/SchemaActions/DlgConvertSpeechSequenceNodeToSpeechNodes_GraphSchemaAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Graph/SchemaActions/DlgConvertSpeechSequenceNodeToSpeechNodes_GraphSchemaAction.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Graph/SchemaActions/DlgConvertSpeechSequenceNodeToSpeechNodes_GraphSchemaAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Graph/SchemaActions/DlgConvertSpeechSequenceNodeToSpeechNodes_GraphSchemaAction.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Graph/SchemaActions/DlgNewComment_GraphSchemaAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Graph/SchemaActions/DlgNewComment_GraphSchemaAction.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Graph/SchemaActions/DlgNewComment_GraphSchemaAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Graph/SchemaActions/DlgNewComment_GraphSchemaAction.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Graph/SchemaActions/DlgNewNode_GraphSchemaAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Graph/SchemaActions/DlgNewNode_GraphSchemaAction.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Graph/SchemaActions/DlgNewNode_GraphSchemaAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Graph/SchemaActions/DlgNewNode_GraphSchemaAction.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/IDlgEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/IDlgEditor.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Nodes/DialogueGraphNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Nodes/DialogueGraphNode.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Nodes/DialogueGraphNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Nodes/DialogueGraphNode.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Nodes/DialogueGraphNode_Base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Nodes/DialogueGraphNode_Base.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Nodes/DialogueGraphNode_Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Nodes/DialogueGraphNode_Base.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Nodes/DialogueGraphNode_Edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Nodes/DialogueGraphNode_Edge.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Nodes/DialogueGraphNode_Edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Nodes/DialogueGraphNode_Edge.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Nodes/DialogueGraphNode_Root.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Nodes/DialogueGraphNode_Root.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Nodes/DialogueGraphNode_Root.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Nodes/DialogueGraphNode_Root.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Nodes/SDlgGraphNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Nodes/SDlgGraphNode.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Nodes/SDlgGraphNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Nodes/SDlgGraphNode.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Nodes/SDlgGraphNode_Base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Nodes/SDlgGraphNode_Base.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Nodes/SDlgGraphNode_Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Nodes/SDlgGraphNode_Base.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Nodes/SDlgGraphNode_Edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Nodes/SDlgGraphNode_Edge.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Nodes/SDlgGraphNode_Edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Nodes/SDlgGraphNode_Edge.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Nodes/SDlgGraphNode_Root.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Nodes/SDlgGraphNode_Root.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Nodes/SDlgGraphNode_Root.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Nodes/SDlgGraphNode_Root.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Nodes/SDlgGraphPin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Nodes/SDlgGraphPin.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Nodes/SDlgGraphPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Nodes/SDlgGraphPin.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Nodes/SDlgNodeOverlayWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Nodes/SDlgNodeOverlayWidget.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/Nodes/SDlgNodeOverlayWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/Nodes/SDlgNodeOverlayWidget.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/SDlgDialogueActionMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/SDlgDialogueActionMenu.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/SDlgDialogueActionMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/SDlgDialogueActionMenu.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/SDlgEditorPalette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/SDlgEditorPalette.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Editor/SDlgEditorPalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Editor/SDlgEditorPalette.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Factories/DlgAssetFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Factories/DlgAssetFactory.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Factories/DlgAssetFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Factories/DlgAssetFactory.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Factories/DlgClassViewerFilters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Factories/DlgClassViewerFilters.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Factories/DlgConditionCustomFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Factories/DlgConditionCustomFactory.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Factories/DlgConditionCustomFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Factories/DlgConditionCustomFactory.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Factories/DlgEventCustomFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Factories/DlgEventCustomFactory.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Factories/DlgEventCustomFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Factories/DlgEventCustomFactory.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Factories/DlgGraphFactories.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Factories/DlgGraphFactories.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Factories/DlgGraphFactories.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Factories/DlgGraphFactories.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Factories/DlgNodeDataFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Factories/DlgNodeDataFactory.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Factories/DlgNodeDataFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Factories/DlgNodeDataFactory.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Factories/DlgTextArgumentCustomFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Factories/DlgTextArgumentCustomFactory.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Factories/DlgTextArgumentCustomFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Factories/DlgTextArgumentCustomFactory.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/IDlgSystemEditorModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/IDlgSystemEditorModule.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Search/DlgSearchManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Search/DlgSearchManager.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Search/DlgSearchManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Search/DlgSearchManager.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Search/DlgSearchResult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Search/DlgSearchResult.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Search/DlgSearchResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Search/DlgSearchResult.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Search/DlgSearchUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Search/DlgSearchUtilities.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Search/DlgSearchUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Search/DlgSearchUtilities.h -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Search/SDlgFindInDialogues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Search/SDlgFindInDialogues.cpp -------------------------------------------------------------------------------- /Source/DlgSystemEditor/Search/SDlgFindInDialogues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Source/DlgSystemEditor/Search/SDlgFindInDialogues.h -------------------------------------------------------------------------------- /Tools/DlgSpellcheckJsonHumanText.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Tools/DlgSpellcheckJsonHumanText.py -------------------------------------------------------------------------------- /Tools/DlgTwineToJsonHumanText.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotYetGames/DlgSystem/HEAD/Tools/DlgTwineToJsonHumanText.py --------------------------------------------------------------------------------