├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── Resources └── Icon128.png ├── Source ├── YetAnotherGraphEditor │ ├── Private │ │ ├── AssetTypeActions │ │ │ ├── YetOtherAssetTypeActions.cpp │ │ │ └── YetOtherAssetTypeActions.h │ │ ├── EditorGraph │ │ │ ├── EditorNodes │ │ │ │ ├── FlowControlEdGraphNode.cpp │ │ │ │ ├── FlowControlEdGraphNode.h │ │ │ │ ├── YetAnotherEdGraphNode.cpp │ │ │ │ └── YetAnotherEdGraphNode.h │ │ │ ├── SchemaActions │ │ │ │ ├── FlowControlSchemaAction_NewNode.cpp │ │ │ │ ├── FlowControlSchemaAction_NewNode.h │ │ │ │ ├── YAEdGraphSchemaAction_NewNode.cpp │ │ │ │ └── YAEdGraphSchemaAction_NewNode.h │ │ │ ├── SlateWidgets │ │ │ │ ├── SYAGraphNode.cpp │ │ │ │ ├── SYAGraphNode.h │ │ │ │ ├── SYetAnotherGraphPin.cpp │ │ │ │ └── SYetAnotherGraphPin.h │ │ │ ├── YAConnectionDrawingPolicy.cpp │ │ │ ├── YAConnectionDrawingPolicy.h │ │ │ ├── YAEdGraph.cpp │ │ │ ├── YAEdGraph.h │ │ │ ├── YetAnotherEdGraphSchema.cpp │ │ │ └── YetAnotherEdGraphSchema.h │ │ ├── Factories │ │ │ ├── YetAnotherAssetFactory.cpp │ │ │ └── YetAnotherAssetFactory.h │ │ ├── Toolkits │ │ │ ├── YetAnotherGraphEditorToolkit.cpp │ │ │ └── YetAnotherGraphEditorToolkit.h │ │ ├── Utility │ │ │ ├── EditorLogger.cpp │ │ │ ├── EditorLogger.h │ │ │ ├── YetAnotherNodeClassHelper.cpp │ │ │ └── YetAnotherNodeClassHelper.h │ │ └── YetAnotherGraphEditor.cpp │ ├── Public │ │ └── YetAnotherGraphEditor.h │ └── YetAnotherGraphEditor.Build.cs └── YetOtherGraphAssets │ ├── Private │ ├── Graphs │ │ └── YAGraph.cpp │ ├── Nodes │ │ ├── ActionNodes │ │ │ ├── ActionNode.cpp │ │ │ └── Implementations │ │ │ │ ├── StoreBoolean.cpp │ │ │ │ └── StoreInteger.cpp │ │ ├── EmptyNodes │ │ │ ├── SimpleNode.cpp │ │ │ └── StartNode.cpp │ │ ├── FlowControlNodes │ │ │ ├── BinarySelectNode.cpp │ │ │ ├── FlowControlNode.cpp │ │ │ ├── Implementations │ │ │ │ ├── BooleanSelector.cpp │ │ │ │ └── NthSelector.cpp │ │ │ └── MultiNodeSelector.cpp │ │ └── YANode.cpp │ ├── Utility │ │ ├── GraphSupportComponent.cpp │ │ ├── GraphSupportComponentInterface.cpp │ │ ├── Logger.cpp │ │ └── YetAnotherGraphInterface.cpp │ └── YetOtherGraphAssets.cpp │ ├── Public │ ├── Graphs │ │ └── YAGraph.h │ ├── Nodes │ │ ├── ActionNodes │ │ │ ├── ActionNode.h │ │ │ └── Implementations │ │ │ │ ├── StoreBoolean.h │ │ │ │ └── StoreInteger.h │ │ ├── EmptyNodes │ │ │ ├── SimpleNode.h │ │ │ └── StartNode.h │ │ ├── FlowControlNodes │ │ │ ├── BinarySelectNode.h │ │ │ ├── FlowControlNode.h │ │ │ ├── Implementations │ │ │ │ ├── BooleanSelector.h │ │ │ │ └── NthSelector.h │ │ │ └── MultiNodeSelector.h │ │ └── YANode.h │ ├── Utility │ │ ├── GraphSupportComponent.h │ │ ├── GraphSupportComponentInterface.h │ │ ├── Logger.h │ │ └── YetAnotherGraphInterface.h │ └── YetOtherGraphAssets.h │ └── YetOtherGraphAssets.Build.cs ├── YetAnotherGraphPlugin.uplugin └── docs └── images ├── BooleanSelector.png ├── Categories.png ├── CreatingTheAssetGraph.png ├── CreatingTheNewAssetNode.png ├── CustomizingTheNewNode.png ├── EditingTheGraph.png ├── EmptyNodes.png ├── NamedNodes.png ├── NodeCategory.png ├── NthSelectorNode.png ├── RenamingNode.png ├── Screenshot1.png ├── Screenshot2.png ├── SelectingTheNode.png ├── StoreBooleanNode.png └── StoreIntegerNode.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/AssetTypeActions/YetOtherAssetTypeActions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/AssetTypeActions/YetOtherAssetTypeActions.cpp -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/AssetTypeActions/YetOtherAssetTypeActions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/AssetTypeActions/YetOtherAssetTypeActions.h -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/EditorGraph/EditorNodes/FlowControlEdGraphNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/EditorGraph/EditorNodes/FlowControlEdGraphNode.cpp -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/EditorGraph/EditorNodes/FlowControlEdGraphNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/EditorGraph/EditorNodes/FlowControlEdGraphNode.h -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/EditorGraph/EditorNodes/YetAnotherEdGraphNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/EditorGraph/EditorNodes/YetAnotherEdGraphNode.cpp -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/EditorGraph/EditorNodes/YetAnotherEdGraphNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/EditorGraph/EditorNodes/YetAnotherEdGraphNode.h -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/EditorGraph/SchemaActions/FlowControlSchemaAction_NewNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/EditorGraph/SchemaActions/FlowControlSchemaAction_NewNode.cpp -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/EditorGraph/SchemaActions/FlowControlSchemaAction_NewNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/EditorGraph/SchemaActions/FlowControlSchemaAction_NewNode.h -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/EditorGraph/SchemaActions/YAEdGraphSchemaAction_NewNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/EditorGraph/SchemaActions/YAEdGraphSchemaAction_NewNode.cpp -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/EditorGraph/SchemaActions/YAEdGraphSchemaAction_NewNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/EditorGraph/SchemaActions/YAEdGraphSchemaAction_NewNode.h -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/EditorGraph/SlateWidgets/SYAGraphNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/EditorGraph/SlateWidgets/SYAGraphNode.cpp -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/EditorGraph/SlateWidgets/SYAGraphNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/EditorGraph/SlateWidgets/SYAGraphNode.h -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/EditorGraph/SlateWidgets/SYetAnotherGraphPin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/EditorGraph/SlateWidgets/SYetAnotherGraphPin.cpp -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/EditorGraph/SlateWidgets/SYetAnotherGraphPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/EditorGraph/SlateWidgets/SYetAnotherGraphPin.h -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/EditorGraph/YAConnectionDrawingPolicy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/EditorGraph/YAConnectionDrawingPolicy.cpp -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/EditorGraph/YAConnectionDrawingPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/EditorGraph/YAConnectionDrawingPolicy.h -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/EditorGraph/YAEdGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/EditorGraph/YAEdGraph.cpp -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/EditorGraph/YAEdGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/EditorGraph/YAEdGraph.h -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/EditorGraph/YetAnotherEdGraphSchema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/EditorGraph/YetAnotherEdGraphSchema.cpp -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/EditorGraph/YetAnotherEdGraphSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/EditorGraph/YetAnotherEdGraphSchema.h -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/Factories/YetAnotherAssetFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/Factories/YetAnotherAssetFactory.cpp -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/Factories/YetAnotherAssetFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/Factories/YetAnotherAssetFactory.h -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/Toolkits/YetAnotherGraphEditorToolkit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/Toolkits/YetAnotherGraphEditorToolkit.cpp -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/Toolkits/YetAnotherGraphEditorToolkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/Toolkits/YetAnotherGraphEditorToolkit.h -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/Utility/EditorLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/Utility/EditorLogger.cpp -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/Utility/EditorLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/Utility/EditorLogger.h -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/Utility/YetAnotherNodeClassHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/Utility/YetAnotherNodeClassHelper.cpp -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/Utility/YetAnotherNodeClassHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/Utility/YetAnotherNodeClassHelper.h -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Private/YetAnotherGraphEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Private/YetAnotherGraphEditor.cpp -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/Public/YetAnotherGraphEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/Public/YetAnotherGraphEditor.h -------------------------------------------------------------------------------- /Source/YetAnotherGraphEditor/YetAnotherGraphEditor.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetAnotherGraphEditor/YetAnotherGraphEditor.Build.cs -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Private/Graphs/YAGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Private/Graphs/YAGraph.cpp -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Private/Nodes/ActionNodes/ActionNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Private/Nodes/ActionNodes/ActionNode.cpp -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Private/Nodes/ActionNodes/Implementations/StoreBoolean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Private/Nodes/ActionNodes/Implementations/StoreBoolean.cpp -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Private/Nodes/ActionNodes/Implementations/StoreInteger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Private/Nodes/ActionNodes/Implementations/StoreInteger.cpp -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Private/Nodes/EmptyNodes/SimpleNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Private/Nodes/EmptyNodes/SimpleNode.cpp -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Private/Nodes/EmptyNodes/StartNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Private/Nodes/EmptyNodes/StartNode.cpp -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Private/Nodes/FlowControlNodes/BinarySelectNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Private/Nodes/FlowControlNodes/BinarySelectNode.cpp -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Private/Nodes/FlowControlNodes/FlowControlNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Private/Nodes/FlowControlNodes/FlowControlNode.cpp -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Private/Nodes/FlowControlNodes/Implementations/BooleanSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Private/Nodes/FlowControlNodes/Implementations/BooleanSelector.cpp -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Private/Nodes/FlowControlNodes/Implementations/NthSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Private/Nodes/FlowControlNodes/Implementations/NthSelector.cpp -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Private/Nodes/FlowControlNodes/MultiNodeSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Private/Nodes/FlowControlNodes/MultiNodeSelector.cpp -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Private/Nodes/YANode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Private/Nodes/YANode.cpp -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Private/Utility/GraphSupportComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Private/Utility/GraphSupportComponent.cpp -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Private/Utility/GraphSupportComponentInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Private/Utility/GraphSupportComponentInterface.cpp -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Private/Utility/Logger.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2018 Jhonny Hueller 2 | #include "Logger.h" 3 | DEFINE_LOG_CATEGORY(LogYetOtherGraphAssets); 4 | -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Private/Utility/YetAnotherGraphInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Private/Utility/YetAnotherGraphInterface.cpp -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Private/YetOtherGraphAssets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Private/YetOtherGraphAssets.cpp -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Public/Graphs/YAGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Public/Graphs/YAGraph.h -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Public/Nodes/ActionNodes/ActionNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Public/Nodes/ActionNodes/ActionNode.h -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Public/Nodes/ActionNodes/Implementations/StoreBoolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Public/Nodes/ActionNodes/Implementations/StoreBoolean.h -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Public/Nodes/ActionNodes/Implementations/StoreInteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Public/Nodes/ActionNodes/Implementations/StoreInteger.h -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Public/Nodes/EmptyNodes/SimpleNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Public/Nodes/EmptyNodes/SimpleNode.h -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Public/Nodes/EmptyNodes/StartNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Public/Nodes/EmptyNodes/StartNode.h -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Public/Nodes/FlowControlNodes/BinarySelectNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Public/Nodes/FlowControlNodes/BinarySelectNode.h -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Public/Nodes/FlowControlNodes/FlowControlNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Public/Nodes/FlowControlNodes/FlowControlNode.h -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Public/Nodes/FlowControlNodes/Implementations/BooleanSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Public/Nodes/FlowControlNodes/Implementations/BooleanSelector.h -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Public/Nodes/FlowControlNodes/Implementations/NthSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Public/Nodes/FlowControlNodes/Implementations/NthSelector.h -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Public/Nodes/FlowControlNodes/MultiNodeSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Public/Nodes/FlowControlNodes/MultiNodeSelector.h -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Public/Nodes/YANode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Public/Nodes/YANode.h -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Public/Utility/GraphSupportComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Public/Utility/GraphSupportComponent.h -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Public/Utility/GraphSupportComponentInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Public/Utility/GraphSupportComponentInterface.h -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Public/Utility/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Public/Utility/Logger.h -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Public/Utility/YetAnotherGraphInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Public/Utility/YetAnotherGraphInterface.h -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/Public/YetOtherGraphAssets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/Public/YetOtherGraphAssets.h -------------------------------------------------------------------------------- /Source/YetOtherGraphAssets/YetOtherGraphAssets.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/Source/YetOtherGraphAssets/YetOtherGraphAssets.Build.cs -------------------------------------------------------------------------------- /YetAnotherGraphPlugin.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/YetAnotherGraphPlugin.uplugin -------------------------------------------------------------------------------- /docs/images/BooleanSelector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/docs/images/BooleanSelector.png -------------------------------------------------------------------------------- /docs/images/Categories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/docs/images/Categories.png -------------------------------------------------------------------------------- /docs/images/CreatingTheAssetGraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/docs/images/CreatingTheAssetGraph.png -------------------------------------------------------------------------------- /docs/images/CreatingTheNewAssetNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/docs/images/CreatingTheNewAssetNode.png -------------------------------------------------------------------------------- /docs/images/CustomizingTheNewNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/docs/images/CustomizingTheNewNode.png -------------------------------------------------------------------------------- /docs/images/EditingTheGraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/docs/images/EditingTheGraph.png -------------------------------------------------------------------------------- /docs/images/EmptyNodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/docs/images/EmptyNodes.png -------------------------------------------------------------------------------- /docs/images/NamedNodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/docs/images/NamedNodes.png -------------------------------------------------------------------------------- /docs/images/NodeCategory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/docs/images/NodeCategory.png -------------------------------------------------------------------------------- /docs/images/NthSelectorNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/docs/images/NthSelectorNode.png -------------------------------------------------------------------------------- /docs/images/RenamingNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/docs/images/RenamingNode.png -------------------------------------------------------------------------------- /docs/images/Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/docs/images/Screenshot1.png -------------------------------------------------------------------------------- /docs/images/Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/docs/images/Screenshot2.png -------------------------------------------------------------------------------- /docs/images/SelectingTheNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/docs/images/SelectingTheNode.png -------------------------------------------------------------------------------- /docs/images/StoreBooleanNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/docs/images/StoreBooleanNode.png -------------------------------------------------------------------------------- /docs/images/StoreIntegerNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LazyTurtle/YetAnotherGraphPlugin/HEAD/docs/images/StoreIntegerNode.png --------------------------------------------------------------------------------