├── .gitignore ├── ArticyImporter.uplugin ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Changelog.md ├── Config ├── DefaultArticyImporter.ini └── FilterPlugin.ini ├── Content ├── BP_ArticyFlowDebugger.uasset ├── Res │ ├── ArticyImporter16.uasset │ └── ArticyImporter64.uasset └── UI │ ├── W_ArticyBranchButton.uasset │ └── W_ArticyDebugger.uasset ├── LICENSE ├── README.md ├── Resources ├── 7 │ └── browse_button.png ├── 14 │ ├── ArticyAssetCaretaker_Asset.png │ ├── ArticyFlowPlayer_Asset.png │ ├── ArticyLocaCaretaker_Asset.png │ ├── ArticyReference_Asset.png │ ├── ArticyTextComponent_Asset.png │ ├── actorsfolder.png │ ├── application.png │ ├── application_14.png │ ├── asset.png │ ├── assetfolder.png │ ├── boolean.png │ ├── comment.png │ ├── condition.png │ ├── connection.png │ ├── dialogue.png │ ├── dialoguefragment.png │ ├── document.png │ ├── entity.png │ ├── entityfolder.png │ ├── enum.png │ ├── flowfolder.png │ ├── flowfragment.png │ ├── hub.png │ ├── instruction.png │ ├── journey.png │ ├── journeysfolder.png │ ├── jump.png │ ├── link.png │ ├── location.png │ ├── locationimage.png │ ├── locationlayerfolder.png │ ├── locationtext.png │ ├── modeltemplate.png │ ├── note.png │ ├── notefolder.png │ ├── number.png │ ├── pin.png │ ├── project.png │ ├── queryreferencestrip.png │ ├── referencefield.png │ ├── referencestrip.png │ ├── script-large.png │ ├── script-medium.png │ ├── script-small.png │ ├── systemfolder.png │ ├── text-large.png │ ├── text-medium.png │ ├── text-small.png │ ├── textobject.png │ ├── userfolder.png │ ├── worldsfolder.png │ └── zone.png ├── 16 │ └── ArticyApplication_Asset.png ├── 48 │ └── application.png ├── 128 │ ├── ArticyAssetCaretaker_Asset.png │ ├── ArticyDatabase_Asset.png │ ├── ArticyFlowPlayer_Asset.png │ ├── ArticyGlobalVariables_Asset.png │ ├── ArticyLocaCaretaker_Asset.png │ ├── ArticyLocalizationPackage_Asset.png │ ├── ArticyPackage_Asset.png │ ├── ArticyPluginSettings_Asset.png │ ├── ArticyReference_Asset.png │ ├── ArticyRuntimeSettings_Asset.png │ ├── ArticyTypeSystem_Asset.png │ ├── actorsfolder.png │ ├── application.png │ ├── asset.png │ ├── assetfolder.png │ ├── boolean.png │ ├── comment.png │ ├── condition.png │ ├── connection.png │ ├── content_tile.png │ ├── content_tile_border.png │ ├── content_tile_fill.png │ ├── content_tile_hover.png │ ├── content_tile_mask.png │ ├── dialogue.png │ ├── dialogue2.png │ ├── dialoguefragment.png │ ├── document.png │ ├── entity.png │ ├── entityfolder.png │ ├── enum.png │ ├── flowfolder.png │ ├── flowfragment.png │ ├── hub.png │ ├── instruction.png │ ├── journey.png │ ├── journeysfolder.png │ ├── jump.png │ ├── link.png │ ├── location.png │ ├── locationimage.png │ ├── locationlayerfolder.png │ ├── locationtext.png │ ├── modeltemplate.png │ ├── note.png │ ├── notefolder.png │ ├── number.png │ ├── pin.png │ ├── project.png │ ├── queryreferencestrip.png │ ├── referencefield.png │ ├── referencestrip.png │ ├── script-large.png │ ├── script-medium.png │ ├── script-small.png │ ├── systemfolder.png │ ├── text-large.png │ ├── text-medium.png │ ├── text-small.png │ ├── textobject.png │ ├── userfolder.png │ ├── worldsfolder.png │ └── zone.png ├── 256 │ ├── path.png │ └── spot.png ├── ArticyDraft16.png ├── ArticyDraft32.png ├── ArticyDraftLogoText.png ├── ArticyImporter16.png ├── ArticyImporter40.png ├── ArticyImporter64.png ├── ArticySoftware16.png ├── ArticySoftware32.png ├── ArticySoftware40.png ├── ArticySoftware64.png ├── ArticyWindow │ ├── Button_FullReimport.png │ ├── Button_FullReimport_Hover.png │ ├── Button_FullReimport_Press.png │ ├── Button_ImportChanges.png │ ├── Button_ImportChanges_Hover.png │ ├── Button_ImportChanges_Press.png │ ├── Button_RegenerateAssets.png │ ├── Button_RegenerateAssets_Hover.png │ ├── Button_RegenerateAssets_Press.png │ ├── Logo_ArticyDraftImporter_TopMiddle.png │ ├── Logo_Articy_BottomRight.png │ └── Logo_Articy_BottomRightCropped.png ├── Border.png ├── ButtonIcon_40x.png └── Icon128.png ├── Source ├── ArticyEditor │ ├── ArticyEditor.Build.cs │ ├── Private │ │ ├── ArticyEditorCommands.cpp │ │ ├── ArticyEditorFunctionLibrary.cpp │ │ ├── ArticyEditorModule.cpp │ │ ├── ArticyEditorStyle.cpp │ │ ├── ArticyImportData.cpp │ │ ├── ArticyJSONFactory.cpp │ │ ├── BuildToolParser │ │ │ ├── BuildToolParser.cpp │ │ │ └── BuildToolParser.h │ │ ├── CodeGeneration │ │ │ ├── CodeFileGenerator.cpp │ │ │ ├── CodeFileGenerator.h │ │ │ ├── CodeGenerator.cpp │ │ │ ├── CodeGenerator.h │ │ │ ├── DatabaseGenerator.cpp │ │ │ ├── DatabaseGenerator.h │ │ │ ├── ExpressoScriptsGenerator.cpp │ │ │ ├── ExpressoScriptsGenerator.h │ │ │ ├── GlobalVarsGenerator.cpp │ │ │ ├── GlobalVarsGenerator.h │ │ │ ├── InterfacesGenerator.cpp │ │ │ ├── InterfacesGenerator.h │ │ │ ├── ObjectDefinitionsGenerator.cpp │ │ │ ├── ObjectDefinitionsGenerator.h │ │ │ ├── PackagesGenerator.cpp │ │ │ └── PackagesGenerator.h │ │ ├── Customizations │ │ │ ├── ArticyAlternativeGVFactory.cpp │ │ │ ├── ArticyAlternativeGVFactory.h │ │ │ ├── ArticyEditorCustomizationManager.cpp │ │ │ ├── ArticyGVEditor.cpp │ │ │ ├── ArticyIdPropertyWidgetCustomizations │ │ │ │ └── DefaultArticyIdPropertyWidgetCustomizations.cpp │ │ │ ├── AssetActions │ │ │ │ ├── AssetTypeActions_ArticyAlterativeGV.cpp │ │ │ │ ├── AssetTypeActions_ArticyAlterativeGV.h │ │ │ │ └── AssetTypeActions_ArticyGV.cpp │ │ │ └── Details │ │ │ │ ├── ArticyGVCustomization.cpp │ │ │ │ ├── ArticyIdCustomization.cpp │ │ │ │ ├── ArticyPluginSettingsCustomization.cpp │ │ │ │ └── ArticyRefCustomization.cpp │ │ ├── ObjectDefinitionsImport.cpp │ │ ├── PackagesImport.cpp │ │ ├── PredefinedTypes.cpp │ │ └── Slate │ │ │ ├── ArticyFilterHelpers.cpp │ │ │ ├── AssetPicker │ │ │ ├── SArticyObjectAssetPicker.cpp │ │ │ ├── SArticyObjectTileView.cpp │ │ │ └── SArticyObjectToolTip.cpp │ │ │ ├── GV │ │ │ ├── SArticyGlobalVariables.cpp │ │ │ └── SArticyGlobalVariablesDebugger.cpp │ │ │ ├── Pins │ │ │ ├── SArticyIdPin.cpp │ │ │ └── SArticyRefPin.cpp │ │ │ ├── SArticyIdProperty.cpp │ │ │ ├── SArticyRefProperty.cpp │ │ │ ├── SPackageSettings.cpp │ │ │ └── UserInterfaceHelperFunctions.cpp │ └── Public │ │ ├── ArticyEditorCommands.h │ │ ├── ArticyEditorConsoleCommands.h │ │ ├── ArticyEditorFunctionLibrary.h │ │ ├── ArticyEditorModule.h │ │ ├── ArticyEditorStyle.h │ │ ├── ArticyImportData.h │ │ ├── ArticyImporterHelpers.h │ │ ├── ArticyJSONFactory.h │ │ ├── Customizations │ │ ├── ArticyEditorCustomizationManager.h │ │ ├── ArticyGVEditor.h │ │ ├── ArticyIdPropertyWidgetCustomizations │ │ │ └── DefaultArticyIdPropertyWidgetCustomizations.h │ │ ├── ArticyPinFactory.h │ │ ├── AssetActions │ │ │ └── AssetTypeActions_ArticyGV.h │ │ └── Details │ │ │ ├── ArticyGVCustomization.h │ │ │ ├── ArticyIdCustomization.h │ │ │ ├── ArticyPluginSettingsCustomization.h │ │ │ └── ArticyRefCustomization.h │ │ ├── ObjectDefinitionsImport.h │ │ ├── PackagesImport.h │ │ ├── PredefinedTypes.h │ │ └── Slate │ │ ├── ArticyFilterHelpers.h │ │ ├── AssetPicker │ │ ├── SArticyObjectAssetPicker.h │ │ ├── SArticyObjectTileView.h │ │ └── SArticyObjectToolTip.h │ │ ├── GV │ │ ├── SArticyGlobalVariables.h │ │ └── SArticyGlobalVariablesDebugger.h │ │ ├── Pins │ │ ├── SArticyIdPin.h │ │ └── SArticyRefPin.h │ │ ├── SArticyIdProperty.h │ │ ├── SArticyRefProperty.h │ │ ├── SPackageSettings.h │ │ └── UserInterfaceHelperFunctions.h └── ArticyRuntime │ ├── ArticyRuntime.Build.cs │ ├── Private │ ├── ArticyAlternativeGlobalVariables.cpp │ ├── ArticyAsset.cpp │ ├── ArticyBaseObject.cpp │ ├── ArticyBaseTypes.cpp │ ├── ArticyBuiltinTypes.cpp │ ├── ArticyDatabase.cpp │ ├── ArticyExpressoScripts.cpp │ ├── ArticyFlowClasses.cpp │ ├── ArticyFlowPlayer.cpp │ ├── ArticyFunctionLibrary.cpp │ ├── ArticyGlobalVariables.cpp │ ├── ArticyObject.cpp │ ├── ArticyPins.cpp │ ├── ArticyPluginSettings.cpp │ ├── ArticyRef.cpp │ ├── ArticyReference.cpp │ ├── ArticyRichTextDecorator.cpp │ ├── ArticyRuntimeModule.cpp │ ├── ArticyScriptFragment.cpp │ ├── Interfaces │ │ ├── ArticyInputPinsProvider.cpp │ │ ├── ArticyNode.cpp │ │ └── ArticyOutputPinsProvider.cpp │ └── ShadowStateManager.cpp │ └── Public │ ├── ArticyAlternativeGlobalVariables.h │ ├── ArticyAsset.h │ ├── ArticyBaseInclude.h │ ├── ArticyBaseObject.h │ ├── ArticyBaseTypes.h │ ├── ArticyBuiltinTypes.h │ ├── ArticyDatabase.h │ ├── ArticyEntity.h │ ├── ArticyExpressoScripts.h │ ├── ArticyFlowClasses.h │ ├── ArticyFlowPlayer.h │ ├── ArticyFunctionLibrary.h │ ├── ArticyGlobalVariables.h │ ├── ArticyHelpers.h │ ├── ArticyObject.h │ ├── ArticyPackage.h │ ├── ArticyPins.h │ ├── ArticyPluginSettings.h │ ├── ArticyPrimitive.h │ ├── ArticyRef.h │ ├── ArticyReference.h │ ├── ArticyRichTextDecorator.h │ ├── ArticyRuntimeModule.h │ ├── ArticyScriptFragment.h │ ├── Interfaces │ ├── ArticyConditionProvider.h │ ├── ArticyFlowObject.h │ ├── ArticyHyperlinkHandler.h │ ├── ArticyInputPinsProvider.h │ ├── ArticyInstructionProvider.h │ ├── ArticyNode.h │ ├── ArticyObjectWithAttachments.h │ ├── ArticyObjectWithColor.h │ ├── ArticyObjectWithDisplayName.h │ ├── ArticyObjectWithExternalId.h │ ├── ArticyObjectWithMenuText.h │ ├── ArticyObjectWithPosition.h │ ├── ArticyObjectWithPreviewImage.h │ ├── ArticyObjectWithShortId.h │ ├── ArticyObjectWithSize.h │ ├── ArticyObjectWithSpeaker.h │ ├── ArticyObjectWithStageDirections.h │ ├── ArticyObjectWithTarget.h │ ├── ArticyObjectWithText.h │ ├── ArticyObjectWithTransform.h │ ├── ArticyObjectWithVertices.h │ ├── ArticyObjectWithZIndex.h │ ├── ArticyObjectWith_Base.h │ ├── ArticyOutputPinsProvider.h │ └── ArticyReflectable.h │ └── ShadowStateManager.h └── docs ├── 2021-10-31-10-31-19.png ├── 2021-10-31-10-36-25.png ├── 2021-10-31-10-48-28.png ├── 2021-10-31-10-49-09.png ├── 2021-10-31-10-50-17.png ├── 2021-10-31-10-50-31.png ├── ArticyRuntimeRef_AutoAdd.png ├── CookSettings.png ├── ImporterButtonUE5.png ├── articy-return-custom-method.png ├── assign-alternative-globals.png ├── check-shadow-state.png ├── create-alternative-globals.png ├── custom-function-node.png ├── custom-function-return-blueprint.png ├── custom-method-node.png ├── get-script-gvs-bp.png ├── get-vars-bp.png ├── implement-custom-function.png ├── implement-custom-return-function.png └── interface-class-settings.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/.gitignore -------------------------------------------------------------------------------- /ArticyImporter.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/ArticyImporter.uplugin -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Changelog.md -------------------------------------------------------------------------------- /Config/DefaultArticyImporter.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Config/DefaultArticyImporter.ini -------------------------------------------------------------------------------- /Config/FilterPlugin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Config/FilterPlugin.ini -------------------------------------------------------------------------------- /Content/BP_ArticyFlowDebugger.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Content/BP_ArticyFlowDebugger.uasset -------------------------------------------------------------------------------- /Content/Res/ArticyImporter16.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Content/Res/ArticyImporter16.uasset -------------------------------------------------------------------------------- /Content/Res/ArticyImporter64.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Content/Res/ArticyImporter64.uasset -------------------------------------------------------------------------------- /Content/UI/W_ArticyBranchButton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Content/UI/W_ArticyBranchButton.uasset -------------------------------------------------------------------------------- /Content/UI/W_ArticyDebugger.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Content/UI/W_ArticyDebugger.uasset -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/README.md -------------------------------------------------------------------------------- /Resources/128/ArticyAssetCaretaker_Asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/ArticyAssetCaretaker_Asset.png -------------------------------------------------------------------------------- /Resources/128/ArticyDatabase_Asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/ArticyDatabase_Asset.png -------------------------------------------------------------------------------- /Resources/128/ArticyFlowPlayer_Asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/ArticyFlowPlayer_Asset.png -------------------------------------------------------------------------------- /Resources/128/ArticyGlobalVariables_Asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/ArticyGlobalVariables_Asset.png -------------------------------------------------------------------------------- /Resources/128/ArticyLocaCaretaker_Asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/ArticyLocaCaretaker_Asset.png -------------------------------------------------------------------------------- /Resources/128/ArticyLocalizationPackage_Asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/ArticyLocalizationPackage_Asset.png -------------------------------------------------------------------------------- /Resources/128/ArticyPackage_Asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/ArticyPackage_Asset.png -------------------------------------------------------------------------------- /Resources/128/ArticyPluginSettings_Asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/ArticyPluginSettings_Asset.png -------------------------------------------------------------------------------- /Resources/128/ArticyReference_Asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/ArticyReference_Asset.png -------------------------------------------------------------------------------- /Resources/128/ArticyRuntimeSettings_Asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/ArticyRuntimeSettings_Asset.png -------------------------------------------------------------------------------- /Resources/128/ArticyTypeSystem_Asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/ArticyTypeSystem_Asset.png -------------------------------------------------------------------------------- /Resources/128/actorsfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/actorsfolder.png -------------------------------------------------------------------------------- /Resources/128/application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/application.png -------------------------------------------------------------------------------- /Resources/128/asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/asset.png -------------------------------------------------------------------------------- /Resources/128/assetfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/assetfolder.png -------------------------------------------------------------------------------- /Resources/128/boolean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/boolean.png -------------------------------------------------------------------------------- /Resources/128/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/comment.png -------------------------------------------------------------------------------- /Resources/128/condition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/condition.png -------------------------------------------------------------------------------- /Resources/128/connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/connection.png -------------------------------------------------------------------------------- /Resources/128/content_tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/content_tile.png -------------------------------------------------------------------------------- /Resources/128/content_tile_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/content_tile_border.png -------------------------------------------------------------------------------- /Resources/128/content_tile_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/content_tile_fill.png -------------------------------------------------------------------------------- /Resources/128/content_tile_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/content_tile_hover.png -------------------------------------------------------------------------------- /Resources/128/content_tile_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/content_tile_mask.png -------------------------------------------------------------------------------- /Resources/128/dialogue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/dialogue.png -------------------------------------------------------------------------------- /Resources/128/dialogue2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/dialogue2.png -------------------------------------------------------------------------------- /Resources/128/dialoguefragment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/dialoguefragment.png -------------------------------------------------------------------------------- /Resources/128/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/document.png -------------------------------------------------------------------------------- /Resources/128/entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/entity.png -------------------------------------------------------------------------------- /Resources/128/entityfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/entityfolder.png -------------------------------------------------------------------------------- /Resources/128/enum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/enum.png -------------------------------------------------------------------------------- /Resources/128/flowfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/flowfolder.png -------------------------------------------------------------------------------- /Resources/128/flowfragment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/flowfragment.png -------------------------------------------------------------------------------- /Resources/128/hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/hub.png -------------------------------------------------------------------------------- /Resources/128/instruction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/instruction.png -------------------------------------------------------------------------------- /Resources/128/journey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/journey.png -------------------------------------------------------------------------------- /Resources/128/journeysfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/journeysfolder.png -------------------------------------------------------------------------------- /Resources/128/jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/jump.png -------------------------------------------------------------------------------- /Resources/128/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/link.png -------------------------------------------------------------------------------- /Resources/128/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/location.png -------------------------------------------------------------------------------- /Resources/128/locationimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/locationimage.png -------------------------------------------------------------------------------- /Resources/128/locationlayerfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/locationlayerfolder.png -------------------------------------------------------------------------------- /Resources/128/locationtext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/locationtext.png -------------------------------------------------------------------------------- /Resources/128/modeltemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/modeltemplate.png -------------------------------------------------------------------------------- /Resources/128/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/note.png -------------------------------------------------------------------------------- /Resources/128/notefolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/notefolder.png -------------------------------------------------------------------------------- /Resources/128/number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/number.png -------------------------------------------------------------------------------- /Resources/128/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/pin.png -------------------------------------------------------------------------------- /Resources/128/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/project.png -------------------------------------------------------------------------------- /Resources/128/queryreferencestrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/queryreferencestrip.png -------------------------------------------------------------------------------- /Resources/128/referencefield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/referencefield.png -------------------------------------------------------------------------------- /Resources/128/referencestrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/referencestrip.png -------------------------------------------------------------------------------- /Resources/128/script-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/script-large.png -------------------------------------------------------------------------------- /Resources/128/script-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/script-medium.png -------------------------------------------------------------------------------- /Resources/128/script-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/script-small.png -------------------------------------------------------------------------------- /Resources/128/systemfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/systemfolder.png -------------------------------------------------------------------------------- /Resources/128/text-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/text-large.png -------------------------------------------------------------------------------- /Resources/128/text-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/text-medium.png -------------------------------------------------------------------------------- /Resources/128/text-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/text-small.png -------------------------------------------------------------------------------- /Resources/128/textobject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/textobject.png -------------------------------------------------------------------------------- /Resources/128/userfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/userfolder.png -------------------------------------------------------------------------------- /Resources/128/worldsfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/worldsfolder.png -------------------------------------------------------------------------------- /Resources/128/zone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/128/zone.png -------------------------------------------------------------------------------- /Resources/14/ArticyAssetCaretaker_Asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/ArticyAssetCaretaker_Asset.png -------------------------------------------------------------------------------- /Resources/14/ArticyFlowPlayer_Asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/ArticyFlowPlayer_Asset.png -------------------------------------------------------------------------------- /Resources/14/ArticyLocaCaretaker_Asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/ArticyLocaCaretaker_Asset.png -------------------------------------------------------------------------------- /Resources/14/ArticyReference_Asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/ArticyReference_Asset.png -------------------------------------------------------------------------------- /Resources/14/ArticyTextComponent_Asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/ArticyTextComponent_Asset.png -------------------------------------------------------------------------------- /Resources/14/actorsfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/actorsfolder.png -------------------------------------------------------------------------------- /Resources/14/application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/application.png -------------------------------------------------------------------------------- /Resources/14/application_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/application_14.png -------------------------------------------------------------------------------- /Resources/14/asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/asset.png -------------------------------------------------------------------------------- /Resources/14/assetfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/assetfolder.png -------------------------------------------------------------------------------- /Resources/14/boolean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/boolean.png -------------------------------------------------------------------------------- /Resources/14/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/comment.png -------------------------------------------------------------------------------- /Resources/14/condition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/condition.png -------------------------------------------------------------------------------- /Resources/14/connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/connection.png -------------------------------------------------------------------------------- /Resources/14/dialogue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/dialogue.png -------------------------------------------------------------------------------- /Resources/14/dialoguefragment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/dialoguefragment.png -------------------------------------------------------------------------------- /Resources/14/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/document.png -------------------------------------------------------------------------------- /Resources/14/entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/entity.png -------------------------------------------------------------------------------- /Resources/14/entityfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/entityfolder.png -------------------------------------------------------------------------------- /Resources/14/enum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/enum.png -------------------------------------------------------------------------------- /Resources/14/flowfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/flowfolder.png -------------------------------------------------------------------------------- /Resources/14/flowfragment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/flowfragment.png -------------------------------------------------------------------------------- /Resources/14/hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/hub.png -------------------------------------------------------------------------------- /Resources/14/instruction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/instruction.png -------------------------------------------------------------------------------- /Resources/14/journey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/journey.png -------------------------------------------------------------------------------- /Resources/14/journeysfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/journeysfolder.png -------------------------------------------------------------------------------- /Resources/14/jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/jump.png -------------------------------------------------------------------------------- /Resources/14/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/link.png -------------------------------------------------------------------------------- /Resources/14/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/location.png -------------------------------------------------------------------------------- /Resources/14/locationimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/locationimage.png -------------------------------------------------------------------------------- /Resources/14/locationlayerfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/locationlayerfolder.png -------------------------------------------------------------------------------- /Resources/14/locationtext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/locationtext.png -------------------------------------------------------------------------------- /Resources/14/modeltemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/modeltemplate.png -------------------------------------------------------------------------------- /Resources/14/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/note.png -------------------------------------------------------------------------------- /Resources/14/notefolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/notefolder.png -------------------------------------------------------------------------------- /Resources/14/number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/number.png -------------------------------------------------------------------------------- /Resources/14/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/pin.png -------------------------------------------------------------------------------- /Resources/14/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/project.png -------------------------------------------------------------------------------- /Resources/14/queryreferencestrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/queryreferencestrip.png -------------------------------------------------------------------------------- /Resources/14/referencefield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/referencefield.png -------------------------------------------------------------------------------- /Resources/14/referencestrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/referencestrip.png -------------------------------------------------------------------------------- /Resources/14/script-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/script-large.png -------------------------------------------------------------------------------- /Resources/14/script-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/script-medium.png -------------------------------------------------------------------------------- /Resources/14/script-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/script-small.png -------------------------------------------------------------------------------- /Resources/14/systemfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/systemfolder.png -------------------------------------------------------------------------------- /Resources/14/text-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/text-large.png -------------------------------------------------------------------------------- /Resources/14/text-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/text-medium.png -------------------------------------------------------------------------------- /Resources/14/text-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/text-small.png -------------------------------------------------------------------------------- /Resources/14/textobject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/textobject.png -------------------------------------------------------------------------------- /Resources/14/userfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/userfolder.png -------------------------------------------------------------------------------- /Resources/14/worldsfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/worldsfolder.png -------------------------------------------------------------------------------- /Resources/14/zone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/14/zone.png -------------------------------------------------------------------------------- /Resources/16/ArticyApplication_Asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/16/ArticyApplication_Asset.png -------------------------------------------------------------------------------- /Resources/256/path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/256/path.png -------------------------------------------------------------------------------- /Resources/256/spot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/256/spot.png -------------------------------------------------------------------------------- /Resources/48/application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/48/application.png -------------------------------------------------------------------------------- /Resources/7/browse_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/7/browse_button.png -------------------------------------------------------------------------------- /Resources/ArticyDraft16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/ArticyDraft16.png -------------------------------------------------------------------------------- /Resources/ArticyDraft32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/ArticyDraft32.png -------------------------------------------------------------------------------- /Resources/ArticyDraftLogoText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/ArticyDraftLogoText.png -------------------------------------------------------------------------------- /Resources/ArticyImporter16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/ArticyImporter16.png -------------------------------------------------------------------------------- /Resources/ArticyImporter40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/ArticyImporter40.png -------------------------------------------------------------------------------- /Resources/ArticyImporter64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/ArticyImporter64.png -------------------------------------------------------------------------------- /Resources/ArticySoftware16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/ArticySoftware16.png -------------------------------------------------------------------------------- /Resources/ArticySoftware32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/ArticySoftware32.png -------------------------------------------------------------------------------- /Resources/ArticySoftware40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/ArticySoftware40.png -------------------------------------------------------------------------------- /Resources/ArticySoftware64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/ArticySoftware64.png -------------------------------------------------------------------------------- /Resources/ArticyWindow/Button_FullReimport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/ArticyWindow/Button_FullReimport.png -------------------------------------------------------------------------------- /Resources/ArticyWindow/Button_FullReimport_Hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/ArticyWindow/Button_FullReimport_Hover.png -------------------------------------------------------------------------------- /Resources/ArticyWindow/Button_FullReimport_Press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/ArticyWindow/Button_FullReimport_Press.png -------------------------------------------------------------------------------- /Resources/ArticyWindow/Button_ImportChanges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/ArticyWindow/Button_ImportChanges.png -------------------------------------------------------------------------------- /Resources/ArticyWindow/Button_ImportChanges_Hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/ArticyWindow/Button_ImportChanges_Hover.png -------------------------------------------------------------------------------- /Resources/ArticyWindow/Button_ImportChanges_Press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/ArticyWindow/Button_ImportChanges_Press.png -------------------------------------------------------------------------------- /Resources/ArticyWindow/Button_RegenerateAssets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/ArticyWindow/Button_RegenerateAssets.png -------------------------------------------------------------------------------- /Resources/ArticyWindow/Button_RegenerateAssets_Hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/ArticyWindow/Button_RegenerateAssets_Hover.png -------------------------------------------------------------------------------- /Resources/ArticyWindow/Button_RegenerateAssets_Press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/ArticyWindow/Button_RegenerateAssets_Press.png -------------------------------------------------------------------------------- /Resources/ArticyWindow/Logo_ArticyDraftImporter_TopMiddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/ArticyWindow/Logo_ArticyDraftImporter_TopMiddle.png -------------------------------------------------------------------------------- /Resources/ArticyWindow/Logo_Articy_BottomRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/ArticyWindow/Logo_Articy_BottomRight.png -------------------------------------------------------------------------------- /Resources/ArticyWindow/Logo_Articy_BottomRightCropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/ArticyWindow/Logo_Articy_BottomRightCropped.png -------------------------------------------------------------------------------- /Resources/Border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/Border.png -------------------------------------------------------------------------------- /Resources/ButtonIcon_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/ButtonIcon_40x.png -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Source/ArticyEditor/ArticyEditor.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/ArticyEditor.Build.cs -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/ArticyEditorCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/ArticyEditorCommands.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/ArticyEditorFunctionLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/ArticyEditorFunctionLibrary.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/ArticyEditorModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/ArticyEditorModule.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/ArticyEditorStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/ArticyEditorStyle.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/ArticyImportData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/ArticyImportData.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/ArticyJSONFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/ArticyJSONFactory.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/BuildToolParser/BuildToolParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/BuildToolParser/BuildToolParser.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/BuildToolParser/BuildToolParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/BuildToolParser/BuildToolParser.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/CodeGeneration/CodeFileGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/CodeGeneration/CodeFileGenerator.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/CodeGeneration/CodeFileGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/CodeGeneration/CodeFileGenerator.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/CodeGeneration/CodeGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/CodeGeneration/CodeGenerator.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/CodeGeneration/CodeGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/CodeGeneration/CodeGenerator.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/CodeGeneration/DatabaseGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/CodeGeneration/DatabaseGenerator.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/CodeGeneration/DatabaseGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/CodeGeneration/DatabaseGenerator.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/CodeGeneration/ExpressoScriptsGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/CodeGeneration/ExpressoScriptsGenerator.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/CodeGeneration/ExpressoScriptsGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/CodeGeneration/ExpressoScriptsGenerator.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/CodeGeneration/GlobalVarsGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/CodeGeneration/GlobalVarsGenerator.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/CodeGeneration/GlobalVarsGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/CodeGeneration/GlobalVarsGenerator.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/CodeGeneration/InterfacesGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/CodeGeneration/InterfacesGenerator.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/CodeGeneration/InterfacesGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/CodeGeneration/InterfacesGenerator.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/CodeGeneration/ObjectDefinitionsGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/CodeGeneration/ObjectDefinitionsGenerator.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/CodeGeneration/ObjectDefinitionsGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/CodeGeneration/ObjectDefinitionsGenerator.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/CodeGeneration/PackagesGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/CodeGeneration/PackagesGenerator.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/CodeGeneration/PackagesGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/CodeGeneration/PackagesGenerator.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/Customizations/ArticyAlternativeGVFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/Customizations/ArticyAlternativeGVFactory.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/Customizations/ArticyAlternativeGVFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/Customizations/ArticyAlternativeGVFactory.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/Customizations/ArticyEditorCustomizationManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/Customizations/ArticyEditorCustomizationManager.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/Customizations/ArticyGVEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/Customizations/ArticyGVEditor.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/Customizations/ArticyIdPropertyWidgetCustomizations/DefaultArticyIdPropertyWidgetCustomizations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/Customizations/ArticyIdPropertyWidgetCustomizations/DefaultArticyIdPropertyWidgetCustomizations.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/Customizations/AssetActions/AssetTypeActions_ArticyAlterativeGV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/Customizations/AssetActions/AssetTypeActions_ArticyAlterativeGV.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/Customizations/AssetActions/AssetTypeActions_ArticyAlterativeGV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/Customizations/AssetActions/AssetTypeActions_ArticyAlterativeGV.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/Customizations/AssetActions/AssetTypeActions_ArticyGV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/Customizations/AssetActions/AssetTypeActions_ArticyGV.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/Customizations/Details/ArticyGVCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/Customizations/Details/ArticyGVCustomization.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/Customizations/Details/ArticyIdCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/Customizations/Details/ArticyIdCustomization.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/Customizations/Details/ArticyPluginSettingsCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/Customizations/Details/ArticyPluginSettingsCustomization.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/Customizations/Details/ArticyRefCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/Customizations/Details/ArticyRefCustomization.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/ObjectDefinitionsImport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/ObjectDefinitionsImport.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/PackagesImport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/PackagesImport.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/PredefinedTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/PredefinedTypes.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/Slate/ArticyFilterHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/Slate/ArticyFilterHelpers.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/Slate/AssetPicker/SArticyObjectAssetPicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/Slate/AssetPicker/SArticyObjectAssetPicker.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/Slate/AssetPicker/SArticyObjectTileView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/Slate/AssetPicker/SArticyObjectTileView.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/Slate/AssetPicker/SArticyObjectToolTip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/Slate/AssetPicker/SArticyObjectToolTip.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/Slate/GV/SArticyGlobalVariables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/Slate/GV/SArticyGlobalVariables.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/Slate/GV/SArticyGlobalVariablesDebugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/Slate/GV/SArticyGlobalVariablesDebugger.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/Slate/Pins/SArticyIdPin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/Slate/Pins/SArticyIdPin.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/Slate/Pins/SArticyRefPin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/Slate/Pins/SArticyRefPin.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/Slate/SArticyIdProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/Slate/SArticyIdProperty.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/Slate/SArticyRefProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/Slate/SArticyRefProperty.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/Slate/SPackageSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/Slate/SPackageSettings.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Private/Slate/UserInterfaceHelperFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Private/Slate/UserInterfaceHelperFunctions.cpp -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/ArticyEditorCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/ArticyEditorCommands.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/ArticyEditorConsoleCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/ArticyEditorConsoleCommands.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/ArticyEditorFunctionLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/ArticyEditorFunctionLibrary.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/ArticyEditorModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/ArticyEditorModule.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/ArticyEditorStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/ArticyEditorStyle.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/ArticyImportData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/ArticyImportData.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/ArticyImporterHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/ArticyImporterHelpers.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/ArticyJSONFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/ArticyJSONFactory.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/Customizations/ArticyEditorCustomizationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/Customizations/ArticyEditorCustomizationManager.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/Customizations/ArticyGVEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/Customizations/ArticyGVEditor.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/Customizations/ArticyIdPropertyWidgetCustomizations/DefaultArticyIdPropertyWidgetCustomizations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/Customizations/ArticyIdPropertyWidgetCustomizations/DefaultArticyIdPropertyWidgetCustomizations.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/Customizations/ArticyPinFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/Customizations/ArticyPinFactory.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/Customizations/AssetActions/AssetTypeActions_ArticyGV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/Customizations/AssetActions/AssetTypeActions_ArticyGV.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/Customizations/Details/ArticyGVCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/Customizations/Details/ArticyGVCustomization.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/Customizations/Details/ArticyIdCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/Customizations/Details/ArticyIdCustomization.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/Customizations/Details/ArticyPluginSettingsCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/Customizations/Details/ArticyPluginSettingsCustomization.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/Customizations/Details/ArticyRefCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/Customizations/Details/ArticyRefCustomization.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/ObjectDefinitionsImport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/ObjectDefinitionsImport.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/PackagesImport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/PackagesImport.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/PredefinedTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/PredefinedTypes.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/Slate/ArticyFilterHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/Slate/ArticyFilterHelpers.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/Slate/AssetPicker/SArticyObjectAssetPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/Slate/AssetPicker/SArticyObjectAssetPicker.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/Slate/AssetPicker/SArticyObjectTileView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/Slate/AssetPicker/SArticyObjectTileView.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/Slate/AssetPicker/SArticyObjectToolTip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/Slate/AssetPicker/SArticyObjectToolTip.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/Slate/GV/SArticyGlobalVariables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/Slate/GV/SArticyGlobalVariables.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/Slate/GV/SArticyGlobalVariablesDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/Slate/GV/SArticyGlobalVariablesDebugger.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/Slate/Pins/SArticyIdPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/Slate/Pins/SArticyIdPin.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/Slate/Pins/SArticyRefPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/Slate/Pins/SArticyRefPin.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/Slate/SArticyIdProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/Slate/SArticyIdProperty.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/Slate/SArticyRefProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/Slate/SArticyRefProperty.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/Slate/SPackageSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/Slate/SPackageSettings.h -------------------------------------------------------------------------------- /Source/ArticyEditor/Public/Slate/UserInterfaceHelperFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyEditor/Public/Slate/UserInterfaceHelperFunctions.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/ArticyRuntime.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/ArticyRuntime.Build.cs -------------------------------------------------------------------------------- /Source/ArticyRuntime/Private/ArticyAlternativeGlobalVariables.cpp: -------------------------------------------------------------------------------- 1 | #include "ArticyAlternativeGlobalVariables.h" -------------------------------------------------------------------------------- /Source/ArticyRuntime/Private/ArticyAsset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Private/ArticyAsset.cpp -------------------------------------------------------------------------------- /Source/ArticyRuntime/Private/ArticyBaseObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Private/ArticyBaseObject.cpp -------------------------------------------------------------------------------- /Source/ArticyRuntime/Private/ArticyBaseTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Private/ArticyBaseTypes.cpp -------------------------------------------------------------------------------- /Source/ArticyRuntime/Private/ArticyBuiltinTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Private/ArticyBuiltinTypes.cpp -------------------------------------------------------------------------------- /Source/ArticyRuntime/Private/ArticyDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Private/ArticyDatabase.cpp -------------------------------------------------------------------------------- /Source/ArticyRuntime/Private/ArticyExpressoScripts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Private/ArticyExpressoScripts.cpp -------------------------------------------------------------------------------- /Source/ArticyRuntime/Private/ArticyFlowClasses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Private/ArticyFlowClasses.cpp -------------------------------------------------------------------------------- /Source/ArticyRuntime/Private/ArticyFlowPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Private/ArticyFlowPlayer.cpp -------------------------------------------------------------------------------- /Source/ArticyRuntime/Private/ArticyFunctionLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Private/ArticyFunctionLibrary.cpp -------------------------------------------------------------------------------- /Source/ArticyRuntime/Private/ArticyGlobalVariables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Private/ArticyGlobalVariables.cpp -------------------------------------------------------------------------------- /Source/ArticyRuntime/Private/ArticyObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Private/ArticyObject.cpp -------------------------------------------------------------------------------- /Source/ArticyRuntime/Private/ArticyPins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Private/ArticyPins.cpp -------------------------------------------------------------------------------- /Source/ArticyRuntime/Private/ArticyPluginSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Private/ArticyPluginSettings.cpp -------------------------------------------------------------------------------- /Source/ArticyRuntime/Private/ArticyRef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Private/ArticyRef.cpp -------------------------------------------------------------------------------- /Source/ArticyRuntime/Private/ArticyReference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Private/ArticyReference.cpp -------------------------------------------------------------------------------- /Source/ArticyRuntime/Private/ArticyRichTextDecorator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Private/ArticyRichTextDecorator.cpp -------------------------------------------------------------------------------- /Source/ArticyRuntime/Private/ArticyRuntimeModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Private/ArticyRuntimeModule.cpp -------------------------------------------------------------------------------- /Source/ArticyRuntime/Private/ArticyScriptFragment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Private/ArticyScriptFragment.cpp -------------------------------------------------------------------------------- /Source/ArticyRuntime/Private/Interfaces/ArticyInputPinsProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Private/Interfaces/ArticyInputPinsProvider.cpp -------------------------------------------------------------------------------- /Source/ArticyRuntime/Private/Interfaces/ArticyNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Private/Interfaces/ArticyNode.cpp -------------------------------------------------------------------------------- /Source/ArticyRuntime/Private/Interfaces/ArticyOutputPinsProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Private/Interfaces/ArticyOutputPinsProvider.cpp -------------------------------------------------------------------------------- /Source/ArticyRuntime/Private/ShadowStateManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Private/ShadowStateManager.cpp -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/ArticyAlternativeGlobalVariables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/ArticyAlternativeGlobalVariables.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/ArticyAsset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/ArticyAsset.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/ArticyBaseInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/ArticyBaseInclude.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/ArticyBaseObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/ArticyBaseObject.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/ArticyBaseTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/ArticyBaseTypes.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/ArticyBuiltinTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/ArticyBuiltinTypes.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/ArticyDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/ArticyDatabase.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/ArticyEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/ArticyEntity.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/ArticyExpressoScripts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/ArticyExpressoScripts.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/ArticyFlowClasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/ArticyFlowClasses.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/ArticyFlowPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/ArticyFlowPlayer.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/ArticyFunctionLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/ArticyFunctionLibrary.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/ArticyGlobalVariables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/ArticyGlobalVariables.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/ArticyHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/ArticyHelpers.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/ArticyObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/ArticyObject.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/ArticyPackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/ArticyPackage.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/ArticyPins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/ArticyPins.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/ArticyPluginSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/ArticyPluginSettings.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/ArticyPrimitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/ArticyPrimitive.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/ArticyRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/ArticyRef.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/ArticyReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/ArticyReference.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/ArticyRichTextDecorator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/ArticyRichTextDecorator.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/ArticyRuntimeModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/ArticyRuntimeModule.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/ArticyScriptFragment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/ArticyScriptFragment.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/Interfaces/ArticyConditionProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/Interfaces/ArticyConditionProvider.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/Interfaces/ArticyFlowObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/Interfaces/ArticyFlowObject.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/Interfaces/ArticyHyperlinkHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/Interfaces/ArticyHyperlinkHandler.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/Interfaces/ArticyInputPinsProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/Interfaces/ArticyInputPinsProvider.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/Interfaces/ArticyInstructionProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/Interfaces/ArticyInstructionProvider.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/Interfaces/ArticyNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/Interfaces/ArticyNode.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithAttachments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithAttachments.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithColor.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithDisplayName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithDisplayName.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithExternalId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithExternalId.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithMenuText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithMenuText.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithPosition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithPosition.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithPreviewImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithPreviewImage.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithShortId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithShortId.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithSize.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithSpeaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithSpeaker.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithStageDirections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithStageDirections.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithTarget.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithText.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithTransform.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithVertices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithVertices.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithZIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/Interfaces/ArticyObjectWithZIndex.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/Interfaces/ArticyObjectWith_Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/Interfaces/ArticyObjectWith_Base.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/Interfaces/ArticyOutputPinsProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/Interfaces/ArticyOutputPinsProvider.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/Interfaces/ArticyReflectable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/Interfaces/ArticyReflectable.h -------------------------------------------------------------------------------- /Source/ArticyRuntime/Public/ShadowStateManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/Source/ArticyRuntime/Public/ShadowStateManager.h -------------------------------------------------------------------------------- /docs/2021-10-31-10-31-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/docs/2021-10-31-10-31-19.png -------------------------------------------------------------------------------- /docs/2021-10-31-10-36-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/docs/2021-10-31-10-36-25.png -------------------------------------------------------------------------------- /docs/2021-10-31-10-48-28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/docs/2021-10-31-10-48-28.png -------------------------------------------------------------------------------- /docs/2021-10-31-10-49-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/docs/2021-10-31-10-49-09.png -------------------------------------------------------------------------------- /docs/2021-10-31-10-50-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/docs/2021-10-31-10-50-17.png -------------------------------------------------------------------------------- /docs/2021-10-31-10-50-31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/docs/2021-10-31-10-50-31.png -------------------------------------------------------------------------------- /docs/ArticyRuntimeRef_AutoAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/docs/ArticyRuntimeRef_AutoAdd.png -------------------------------------------------------------------------------- /docs/CookSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/docs/CookSettings.png -------------------------------------------------------------------------------- /docs/ImporterButtonUE5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/docs/ImporterButtonUE5.png -------------------------------------------------------------------------------- /docs/articy-return-custom-method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/docs/articy-return-custom-method.png -------------------------------------------------------------------------------- /docs/assign-alternative-globals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/docs/assign-alternative-globals.png -------------------------------------------------------------------------------- /docs/check-shadow-state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/docs/check-shadow-state.png -------------------------------------------------------------------------------- /docs/create-alternative-globals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/docs/create-alternative-globals.png -------------------------------------------------------------------------------- /docs/custom-function-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/docs/custom-function-node.png -------------------------------------------------------------------------------- /docs/custom-function-return-blueprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/docs/custom-function-return-blueprint.png -------------------------------------------------------------------------------- /docs/custom-method-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/docs/custom-method-node.png -------------------------------------------------------------------------------- /docs/get-script-gvs-bp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/docs/get-script-gvs-bp.png -------------------------------------------------------------------------------- /docs/get-vars-bp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/docs/get-vars-bp.png -------------------------------------------------------------------------------- /docs/implement-custom-function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/docs/implement-custom-function.png -------------------------------------------------------------------------------- /docs/implement-custom-return-function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/docs/implement-custom-return-function.png -------------------------------------------------------------------------------- /docs/interface-class-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArticySoftware/Articy3ImporterForUnreal/HEAD/docs/interface-class-settings.png --------------------------------------------------------------------------------