├── .gitattributes ├── Bridged.meta ├── Bridged ├── GraphEvaluator.meta ├── GraphEvaluator │ ├── GraphEvaluator.cs │ ├── GraphEvaluator.cs.meta │ ├── GraphEvaluatorEditor.cs │ └── GraphEvaluatorEditor.cs.meta ├── GraphFramework.GraphifyBridge.asmdef └── GraphFramework.GraphifyBridge.asmdef.meta ├── EditorOnly.meta ├── EditorOnly ├── Attributes.meta ├── Attributes │ ├── RegisterStackTo.cs │ ├── RegisterStackTo.cs.meta │ ├── RegisterViewFor.cs │ └── RegisterViewFor.cs.meta ├── BaseGraph.meta ├── BaseGraph │ ├── GraphClickedHandler.cs │ ├── GraphClickedHandler.cs.meta │ ├── GraphfyWindow.cs │ ├── GraphfyWindow.cs.meta │ ├── GraphifyView.cs │ ├── GraphifyView.cs.meta │ ├── NodeRegistrationResolver.cs │ └── NodeRegistrationResolver.cs.meta ├── Blackboard.meta ├── Blackboard │ ├── BlackboardField.cs │ ├── BlackboardField.cs.meta │ ├── BlackboardFieldFactory.cs │ ├── BlackboardFieldFactory.cs.meta │ ├── DataBlackboardView.cs │ ├── DataBlackboardView.cs.meta │ ├── FieldFactory.cs │ ├── FieldFactory.cs.meta │ ├── NavBlackboardNodeItem.cs │ ├── NavBlackboardNodeItem.cs.meta │ ├── NavigationBlackboard.cs │ └── NavigationBlackboard.cs.meta ├── DataModels.meta ├── DataModels │ ├── DynamicPortModel.cs │ ├── DynamicPortModel.cs.meta │ ├── EdgeModel.cs │ ├── EdgeModel.cs.meta │ ├── GraphModel.cs │ ├── GraphModel.cs.meta │ ├── MovableModel.cs │ ├── MovableModel.cs.meta │ ├── NodeModel.cs │ ├── NodeModel.cs.meta │ ├── PortModel.cs │ ├── PortModel.cs.meta │ ├── StackModel.cs │ └── StackModel.cs.meta ├── Extensions.meta ├── Extensions │ ├── AssetClickedHandler.cs │ ├── AssetClickedHandler.cs.meta │ ├── AssetHelper.cs │ ├── AssetHelper.cs.meta │ ├── BlueprintHelper.cs │ ├── BlueprintHelper.cs.meta │ ├── ReflectionExtensions.cs │ └── ReflectionExtensions.cs.meta ├── GraphFramework.GraphifyEditor.asmdef ├── GraphFramework.GraphifyEditor.asmdef.meta ├── Search Window.meta ├── Search Window │ ├── GraphNodeSearchTreeProvider.cs │ ├── GraphNodeSearchTreeProvider.cs.meta │ ├── GraphSearchWindow.cs │ └── GraphSearchWindow.cs.meta ├── Settings.meta ├── Settings │ ├── GraphSettings.cs │ └── GraphSettings.cs.meta ├── Styles.meta ├── Styles │ ├── BaseGraphViewStyle.uss │ └── BaseGraphViewStyle.uss.meta ├── Views.meta └── Views │ ├── AutoView.cs │ ├── AutoView.cs.meta │ ├── CustomNodeView.cs │ ├── CustomNodeView.cs.meta │ ├── CustomStackNode.cs │ ├── CustomStackNode.cs.meta │ ├── DynamicPortView.cs │ ├── DynamicPortView.cs.meta │ ├── MovableView.cs │ ├── MovableView.cs.meta │ ├── NodeView.cs │ ├── NodeView.cs.meta │ ├── Renamer.meta │ ├── Renamer │ ├── RenameWindow.cs │ ├── RenameWindow.cs.meta │ ├── Renamer.cs │ ├── Renamer.cs.meta │ ├── Renamer.uxml │ └── Renamer.uxml.meta │ ├── StackView.cs │ ├── StackView.cs.meta │ ├── ViewRegistrationResolver.cs │ └── ViewRegistrationResolver.cs.meta ├── GraphFramework.GraphifyRuntime.asmdef ├── GraphFramework.GraphifyRuntime.asmdef.meta ├── LICENSE ├── LICENSE.meta ├── Readme.md ├── Readme.md.meta ├── Runtime.meta ├── Runtime ├── Attributes.meta ├── Attributes │ ├── DirectionalAttribute.cs │ ├── DirectionalAttribute.cs.meta │ ├── DynamicRange.cs │ ├── DynamicRange.cs.meta │ ├── In.cs │ ├── In.cs.meta │ ├── Out.cs │ ├── Out.cs.meta │ ├── RegisterTo.cs │ ├── RegisterTo.cs.meta │ ├── RegistrationAttribute.cs │ └── RegistrationAttribute.cs.meta ├── Blackboard.meta ├── Blackboard │ ├── Blackboards.cs │ ├── Blackboards.cs.meta │ ├── DataBlackboard.cs │ ├── DataBlackboard.cs.meta │ ├── IDataBlackboard.cs │ └── IDataBlackboard.cs.meta ├── Context.meta ├── Context │ ├── Context.cs │ └── Context.cs.meta ├── GraphBlueprint.cs ├── GraphBlueprint.cs.meta ├── HasAssetGuid.cs ├── HasAssetGuid.cs.meta ├── Node.meta ├── Node │ ├── IRootNode.cs │ ├── IRootNode.cs.meta │ ├── RuntimeNode.cs │ ├── RuntimeNode.cs.meta │ ├── SubgraphNode.cs │ └── SubgraphNode.cs.meta ├── NodeIO.meta ├── NodeIO │ ├── Any.cs │ ├── Any.cs.meta │ ├── BasePort.cs │ ├── BasePort.cs.meta │ ├── DynamicValuePort.cs │ ├── DynamicValuePort.cs.meta │ ├── Link.cs │ ├── Link.cs.meta │ ├── PortWithValue.cs │ ├── PortWithValue.cs.meta │ ├── SerializedFieldInfo.cs │ ├── SerializedFieldInfo.cs.meta │ ├── ValuePort.cs │ └── ValuePort.cs.meta ├── SerializableType.cs ├── SerializableType.cs.meta ├── VirtualGraph.cs └── VirtualGraph.cs.meta ├── Settings.meta ├── Settings ├── DefaultSettings.asset └── DefaultSettings.asset.meta ├── package.json └── package.json.meta /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/.gitattributes -------------------------------------------------------------------------------- /Bridged.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Bridged.meta -------------------------------------------------------------------------------- /Bridged/GraphEvaluator.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4fa3a4eccc4a49ec8a1eeca22af785d7 3 | timeCreated: 1612701523 -------------------------------------------------------------------------------- /Bridged/GraphEvaluator/GraphEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Bridged/GraphEvaluator/GraphEvaluator.cs -------------------------------------------------------------------------------- /Bridged/GraphEvaluator/GraphEvaluator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b76c3172ea14ff4bf148dfbc12818b0 3 | timeCreated: 1612701523 -------------------------------------------------------------------------------- /Bridged/GraphEvaluator/GraphEvaluatorEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Bridged/GraphEvaluator/GraphEvaluatorEditor.cs -------------------------------------------------------------------------------- /Bridged/GraphEvaluator/GraphEvaluatorEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 561b687874874132af786bc6fc6c005c 3 | timeCreated: 1612701788 -------------------------------------------------------------------------------- /Bridged/GraphFramework.GraphifyBridge.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Bridged/GraphFramework.GraphifyBridge.asmdef -------------------------------------------------------------------------------- /Bridged/GraphFramework.GraphifyBridge.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Bridged/GraphFramework.GraphifyBridge.asmdef.meta -------------------------------------------------------------------------------- /EditorOnly.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly.meta -------------------------------------------------------------------------------- /EditorOnly/Attributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 326a0ef1e55a4b1cb2618e18d3029e07 3 | timeCreated: 1615770974 -------------------------------------------------------------------------------- /EditorOnly/Attributes/RegisterStackTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Attributes/RegisterStackTo.cs -------------------------------------------------------------------------------- /EditorOnly/Attributes/RegisterStackTo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02e0f260336d4a8da607357b9a610f5f 3 | timeCreated: 1616044578 -------------------------------------------------------------------------------- /EditorOnly/Attributes/RegisterViewFor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Attributes/RegisterViewFor.cs -------------------------------------------------------------------------------- /EditorOnly/Attributes/RegisterViewFor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Attributes/RegisterViewFor.cs.meta -------------------------------------------------------------------------------- /EditorOnly/BaseGraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba8f66df240f42adba2a4383971db067 3 | timeCreated: 1602292335 -------------------------------------------------------------------------------- /EditorOnly/BaseGraph/GraphClickedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/BaseGraph/GraphClickedHandler.cs -------------------------------------------------------------------------------- /EditorOnly/BaseGraph/GraphClickedHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 240a68fc2f0040709532f1b60be0904d 3 | timeCreated: 1615657834 -------------------------------------------------------------------------------- /EditorOnly/BaseGraph/GraphfyWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/BaseGraph/GraphfyWindow.cs -------------------------------------------------------------------------------- /EditorOnly/BaseGraph/GraphfyWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/BaseGraph/GraphfyWindow.cs.meta -------------------------------------------------------------------------------- /EditorOnly/BaseGraph/GraphifyView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/BaseGraph/GraphifyView.cs -------------------------------------------------------------------------------- /EditorOnly/BaseGraph/GraphifyView.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/BaseGraph/GraphifyView.cs.meta -------------------------------------------------------------------------------- /EditorOnly/BaseGraph/NodeRegistrationResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/BaseGraph/NodeRegistrationResolver.cs -------------------------------------------------------------------------------- /EditorOnly/BaseGraph/NodeRegistrationResolver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59164a6fdd7a473c80d7e4221ede832d 3 | timeCreated: 1615547176 -------------------------------------------------------------------------------- /EditorOnly/Blackboard.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3fd5367e22c0461caa0b5b132c171f6f 3 | timeCreated: 1602300718 -------------------------------------------------------------------------------- /EditorOnly/Blackboard/BlackboardField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Blackboard/BlackboardField.cs -------------------------------------------------------------------------------- /EditorOnly/Blackboard/BlackboardField.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dec578328cc24871b71c01d138d8cc09 3 | timeCreated: 1618029969 -------------------------------------------------------------------------------- /EditorOnly/Blackboard/BlackboardFieldFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Blackboard/BlackboardFieldFactory.cs -------------------------------------------------------------------------------- /EditorOnly/Blackboard/BlackboardFieldFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: becd17b3d5eb49039d98df3f2f59a275 3 | timeCreated: 1617797562 -------------------------------------------------------------------------------- /EditorOnly/Blackboard/DataBlackboardView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Blackboard/DataBlackboardView.cs -------------------------------------------------------------------------------- /EditorOnly/Blackboard/DataBlackboardView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a4cd10f109c4ca69d7ee0e39d1a2ca7 3 | timeCreated: 1617796241 -------------------------------------------------------------------------------- /EditorOnly/Blackboard/FieldFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Blackboard/FieldFactory.cs -------------------------------------------------------------------------------- /EditorOnly/Blackboard/FieldFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03d962cb8eaf4607a6b4b390c2e8269e 3 | timeCreated: 1617773208 -------------------------------------------------------------------------------- /EditorOnly/Blackboard/NavBlackboardNodeItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Blackboard/NavBlackboardNodeItem.cs -------------------------------------------------------------------------------- /EditorOnly/Blackboard/NavBlackboardNodeItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f6e9206364e418fa21214c22a9535e9 3 | timeCreated: 1602300731 -------------------------------------------------------------------------------- /EditorOnly/Blackboard/NavigationBlackboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Blackboard/NavigationBlackboard.cs -------------------------------------------------------------------------------- /EditorOnly/Blackboard/NavigationBlackboard.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d883bcc5341442589ee62ce6a9353d20 3 | timeCreated: 1602389683 -------------------------------------------------------------------------------- /EditorOnly/DataModels.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67142889be9a41e08cb62309c63d8188 3 | timeCreated: 1614753322 -------------------------------------------------------------------------------- /EditorOnly/DataModels/DynamicPortModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/DataModels/DynamicPortModel.cs -------------------------------------------------------------------------------- /EditorOnly/DataModels/DynamicPortModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e7639abf8df4fb7b2264f710a62e84e 3 | timeCreated: 1616819176 -------------------------------------------------------------------------------- /EditorOnly/DataModels/EdgeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/DataModels/EdgeModel.cs -------------------------------------------------------------------------------- /EditorOnly/DataModels/EdgeModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5266254d2244b1ea03bea33580d040b 3 | timeCreated: 1614846545 -------------------------------------------------------------------------------- /EditorOnly/DataModels/GraphModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/DataModels/GraphModel.cs -------------------------------------------------------------------------------- /EditorOnly/DataModels/GraphModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 374fcfc2976e4d73a513c464818c44fc 3 | timeCreated: 1614830173 -------------------------------------------------------------------------------- /EditorOnly/DataModels/MovableModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/DataModels/MovableModel.cs -------------------------------------------------------------------------------- /EditorOnly/DataModels/MovableModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32fef6237fef47368ff8b8a4cec02891 3 | timeCreated: 1615560189 -------------------------------------------------------------------------------- /EditorOnly/DataModels/NodeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/DataModels/NodeModel.cs -------------------------------------------------------------------------------- /EditorOnly/DataModels/NodeModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1570438075140aa8f2d4edcfad6c2e7 3 | timeCreated: 1614753344 -------------------------------------------------------------------------------- /EditorOnly/DataModels/PortModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/DataModels/PortModel.cs -------------------------------------------------------------------------------- /EditorOnly/DataModels/PortModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 752ab329e09f438da94c2e5e81d1513b 3 | timeCreated: 1614857777 -------------------------------------------------------------------------------- /EditorOnly/DataModels/StackModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/DataModels/StackModel.cs -------------------------------------------------------------------------------- /EditorOnly/DataModels/StackModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6cb25087522e4508be4c302e822bc881 3 | timeCreated: 1615318381 -------------------------------------------------------------------------------- /EditorOnly/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3670c369efa342b589dbf761430044f4 3 | timeCreated: 1615311647 -------------------------------------------------------------------------------- /EditorOnly/Extensions/AssetClickedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Extensions/AssetClickedHandler.cs -------------------------------------------------------------------------------- /EditorOnly/Extensions/AssetClickedHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ddaf7fb5cb643f7ba41fbad2fd49da8 3 | timeCreated: 1615656670 -------------------------------------------------------------------------------- /EditorOnly/Extensions/AssetHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Extensions/AssetHelper.cs -------------------------------------------------------------------------------- /EditorOnly/Extensions/AssetHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e27938cecf674e86a060e1128bb7ddce 3 | timeCreated: 1615311838 -------------------------------------------------------------------------------- /EditorOnly/Extensions/BlueprintHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Extensions/BlueprintHelper.cs -------------------------------------------------------------------------------- /EditorOnly/Extensions/BlueprintHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7e2ceddce2f4795a0fa0b458edbe2bf 3 | timeCreated: 1617334623 -------------------------------------------------------------------------------- /EditorOnly/Extensions/ReflectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Extensions/ReflectionExtensions.cs -------------------------------------------------------------------------------- /EditorOnly/Extensions/ReflectionExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f9ac294717845cabab9cb86fa67cb7e 3 | timeCreated: 1614040474 -------------------------------------------------------------------------------- /EditorOnly/GraphFramework.GraphifyEditor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/GraphFramework.GraphifyEditor.asmdef -------------------------------------------------------------------------------- /EditorOnly/GraphFramework.GraphifyEditor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/GraphFramework.GraphifyEditor.asmdef.meta -------------------------------------------------------------------------------- /EditorOnly/Search Window.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c1932b7ea65470c9c87138f343fc59e 3 | timeCreated: 1613521874 -------------------------------------------------------------------------------- /EditorOnly/Search Window/GraphNodeSearchTreeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Search Window/GraphNodeSearchTreeProvider.cs -------------------------------------------------------------------------------- /EditorOnly/Search Window/GraphNodeSearchTreeProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e2254ae33fc45f1b91daa272fa0a7dd 3 | timeCreated: 1613524717 -------------------------------------------------------------------------------- /EditorOnly/Search Window/GraphSearchWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Search Window/GraphSearchWindow.cs -------------------------------------------------------------------------------- /EditorOnly/Search Window/GraphSearchWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47eb8547fa7547d6b7af55c40115015e 3 | timeCreated: 1613521885 -------------------------------------------------------------------------------- /EditorOnly/Settings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de968fea778a42b289fe65a63f11d7f3 3 | timeCreated: 1612795843 -------------------------------------------------------------------------------- /EditorOnly/Settings/GraphSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Settings/GraphSettings.cs -------------------------------------------------------------------------------- /EditorOnly/Settings/GraphSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 328f34f4bdcf4f7a9af04a84fa020cd6 3 | timeCreated: 1612795857 -------------------------------------------------------------------------------- /EditorOnly/Styles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Styles.meta -------------------------------------------------------------------------------- /EditorOnly/Styles/BaseGraphViewStyle.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Styles/BaseGraphViewStyle.uss -------------------------------------------------------------------------------- /EditorOnly/Styles/BaseGraphViewStyle.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Styles/BaseGraphViewStyle.uss.meta -------------------------------------------------------------------------------- /EditorOnly/Views.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e38500ad930c4117a0e11ea3f7442a07 3 | timeCreated: 1615560163 -------------------------------------------------------------------------------- /EditorOnly/Views/AutoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Views/AutoView.cs -------------------------------------------------------------------------------- /EditorOnly/Views/AutoView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf0abc66de3d43caa9a3414ac4e51793 3 | timeCreated: 1615827908 -------------------------------------------------------------------------------- /EditorOnly/Views/CustomNodeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Views/CustomNodeView.cs -------------------------------------------------------------------------------- /EditorOnly/Views/CustomNodeView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ffd9289de234d1ba55fc75d3fdb53e8 3 | timeCreated: 1615771125 -------------------------------------------------------------------------------- /EditorOnly/Views/CustomStackNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Views/CustomStackNode.cs -------------------------------------------------------------------------------- /EditorOnly/Views/CustomStackNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a937ac272af04bc3832db6378019e77b 3 | timeCreated: 1616043799 -------------------------------------------------------------------------------- /EditorOnly/Views/DynamicPortView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Views/DynamicPortView.cs -------------------------------------------------------------------------------- /EditorOnly/Views/DynamicPortView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 275fcbadec9c41328b8945cfe899dbcb 3 | timeCreated: 1616823027 -------------------------------------------------------------------------------- /EditorOnly/Views/MovableView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Views/MovableView.cs -------------------------------------------------------------------------------- /EditorOnly/Views/MovableView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60eaa1c06ee24122b48bfb09f67dde9b 3 | timeCreated: 1615319155 -------------------------------------------------------------------------------- /EditorOnly/Views/NodeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Views/NodeView.cs -------------------------------------------------------------------------------- /EditorOnly/Views/NodeView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 927145d71bfe453182727f756537b994 3 | timeCreated: 1614753377 -------------------------------------------------------------------------------- /EditorOnly/Views/Renamer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05025b9ef3a149a6aec215303ce354e6 3 | timeCreated: 1616106614 -------------------------------------------------------------------------------- /EditorOnly/Views/Renamer/RenameWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Views/Renamer/RenameWindow.cs -------------------------------------------------------------------------------- /EditorOnly/Views/Renamer/RenameWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Views/Renamer/RenameWindow.cs.meta -------------------------------------------------------------------------------- /EditorOnly/Views/Renamer/Renamer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Views/Renamer/Renamer.cs -------------------------------------------------------------------------------- /EditorOnly/Views/Renamer/Renamer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Views/Renamer/Renamer.cs.meta -------------------------------------------------------------------------------- /EditorOnly/Views/Renamer/Renamer.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Views/Renamer/Renamer.uxml -------------------------------------------------------------------------------- /EditorOnly/Views/Renamer/Renamer.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Views/Renamer/Renamer.uxml.meta -------------------------------------------------------------------------------- /EditorOnly/Views/StackView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Views/StackView.cs -------------------------------------------------------------------------------- /EditorOnly/Views/StackView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02dbe6f6be0844fdb3912a84c827995f 3 | timeCreated: 1615318126 -------------------------------------------------------------------------------- /EditorOnly/Views/ViewRegistrationResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/EditorOnly/Views/ViewRegistrationResolver.cs -------------------------------------------------------------------------------- /EditorOnly/Views/ViewRegistrationResolver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fc5e672cc2c4e8b996253ea7a2cfbde 3 | timeCreated: 1615770223 -------------------------------------------------------------------------------- /GraphFramework.GraphifyRuntime.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/GraphFramework.GraphifyRuntime.asmdef -------------------------------------------------------------------------------- /GraphFramework.GraphifyRuntime.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/GraphFramework.GraphifyRuntime.asmdef.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/LICENSE.meta -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Readme.md -------------------------------------------------------------------------------- /Readme.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Readme.md.meta -------------------------------------------------------------------------------- /Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b16ebff31bdd49ea8642f10e3c64aa9e 3 | timeCreated: 1604382581 -------------------------------------------------------------------------------- /Runtime/Attributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39c5d45d1101499e9c6fd5bd2085eb3f 3 | timeCreated: 1612456331 -------------------------------------------------------------------------------- /Runtime/Attributes/DirectionalAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Runtime/Attributes/DirectionalAttribute.cs -------------------------------------------------------------------------------- /Runtime/Attributes/DirectionalAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1dc39416ded34102b9cb3d374fd48149 3 | timeCreated: 1616094784 -------------------------------------------------------------------------------- /Runtime/Attributes/DynamicRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Runtime/Attributes/DynamicRange.cs -------------------------------------------------------------------------------- /Runtime/Attributes/DynamicRange.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32ab41a827264f8b94424ca0074c7178 3 | timeCreated: 1617180520 -------------------------------------------------------------------------------- /Runtime/Attributes/In.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Runtime/Attributes/In.cs -------------------------------------------------------------------------------- /Runtime/Attributes/In.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02a8ec6bfc934b9aa97be082e11df889 3 | timeCreated: 1614046487 -------------------------------------------------------------------------------- /Runtime/Attributes/Out.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Runtime/Attributes/Out.cs -------------------------------------------------------------------------------- /Runtime/Attributes/Out.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48a80b7f40de4d8bb0ea10174f84e2bd 3 | timeCreated: 1614046498 -------------------------------------------------------------------------------- /Runtime/Attributes/RegisterTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Runtime/Attributes/RegisterTo.cs -------------------------------------------------------------------------------- /Runtime/Attributes/RegisterTo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f0d381302ea49d7ae6335b798a8c439 3 | timeCreated: 1613523931 -------------------------------------------------------------------------------- /Runtime/Attributes/RegistrationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Runtime/Attributes/RegistrationAttribute.cs -------------------------------------------------------------------------------- /Runtime/Attributes/RegistrationAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab70724bed1f4cc39ae498259798b958 3 | timeCreated: 1616044843 -------------------------------------------------------------------------------- /Runtime/Blackboard.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2915032a4a3a465ea0b84361cc74b6c5 3 | timeCreated: 1617795569 -------------------------------------------------------------------------------- /Runtime/Blackboard/Blackboards.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Runtime/Blackboard/Blackboards.cs -------------------------------------------------------------------------------- /Runtime/Blackboard/Blackboards.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96cea79aec9340388609287224bd41c4 3 | timeCreated: 1617948144 -------------------------------------------------------------------------------- /Runtime/Blackboard/DataBlackboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Runtime/Blackboard/DataBlackboard.cs -------------------------------------------------------------------------------- /Runtime/Blackboard/DataBlackboard.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c447bb9c2ab4935806d88d7991bbf12 3 | timeCreated: 1617783444 -------------------------------------------------------------------------------- /Runtime/Blackboard/IDataBlackboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Runtime/Blackboard/IDataBlackboard.cs -------------------------------------------------------------------------------- /Runtime/Blackboard/IDataBlackboard.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acdd043d0276414299900ff39fad3b3c 3 | timeCreated: 1617795837 -------------------------------------------------------------------------------- /Runtime/Context.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 253f5d0e52c641d7893de331be437805 3 | timeCreated: 1618157997 -------------------------------------------------------------------------------- /Runtime/Context/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Runtime/Context/Context.cs -------------------------------------------------------------------------------- /Runtime/Context/Context.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95a2f54086da49eea7c5b3c8c34e9bb2 3 | timeCreated: 1617346359 -------------------------------------------------------------------------------- /Runtime/GraphBlueprint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Runtime/GraphBlueprint.cs -------------------------------------------------------------------------------- /Runtime/GraphBlueprint.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9c1666cfa1b498f966d1d2f3269622c 3 | timeCreated: 1600751443 -------------------------------------------------------------------------------- /Runtime/HasAssetGuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Runtime/HasAssetGuid.cs -------------------------------------------------------------------------------- /Runtime/HasAssetGuid.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5656d8140d3f4658bc2a234c2cb2f9e9 3 | timeCreated: 1617248855 -------------------------------------------------------------------------------- /Runtime/Node.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc29c7f31c294a0e821c3a52df13e20e 3 | timeCreated: 1615546724 -------------------------------------------------------------------------------- /Runtime/Node/IRootNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Runtime/Node/IRootNode.cs -------------------------------------------------------------------------------- /Runtime/Node/IRootNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f069dd25c90c4675abc4502fd60c60b4 3 | timeCreated: 1615547028 -------------------------------------------------------------------------------- /Runtime/Node/RuntimeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Runtime/Node/RuntimeNode.cs -------------------------------------------------------------------------------- /Runtime/Node/RuntimeNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d586e1fc59d54615b74f9e0e85b487c8 3 | timeCreated: 1604382576 -------------------------------------------------------------------------------- /Runtime/Node/SubgraphNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Runtime/Node/SubgraphNode.cs -------------------------------------------------------------------------------- /Runtime/Node/SubgraphNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8447880893e49318538eba8cc939681 3 | timeCreated: 1617239222 -------------------------------------------------------------------------------- /Runtime/NodeIO.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b807385d1d847e2bc1113f3906a2d64 3 | timeCreated: 1613971223 -------------------------------------------------------------------------------- /Runtime/NodeIO/Any.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Runtime/NodeIO/Any.cs -------------------------------------------------------------------------------- /Runtime/NodeIO/Any.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2343a887d83b488ab4ebed09741e9319 3 | timeCreated: 1616033233 -------------------------------------------------------------------------------- /Runtime/NodeIO/BasePort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Runtime/NodeIO/BasePort.cs -------------------------------------------------------------------------------- /Runtime/NodeIO/BasePort.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0eb6a4e5a584645bd329a6515458dfb 3 | timeCreated: 1616719467 -------------------------------------------------------------------------------- /Runtime/NodeIO/DynamicValuePort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Runtime/NodeIO/DynamicValuePort.cs -------------------------------------------------------------------------------- /Runtime/NodeIO/DynamicValuePort.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 068c2a5afff647f091a41d13fde504a0 3 | timeCreated: 1616721898 -------------------------------------------------------------------------------- /Runtime/NodeIO/Link.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Runtime/NodeIO/Link.cs -------------------------------------------------------------------------------- /Runtime/NodeIO/Link.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50f1c12c6c4d4aa687b99dc8e9626a4b 3 | timeCreated: 1614940701 -------------------------------------------------------------------------------- /Runtime/NodeIO/PortWithValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Runtime/NodeIO/PortWithValue.cs -------------------------------------------------------------------------------- /Runtime/NodeIO/PortWithValue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4841745edb0430684c3924954a1eea6 3 | timeCreated: 1616720205 -------------------------------------------------------------------------------- /Runtime/NodeIO/SerializedFieldInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Runtime/NodeIO/SerializedFieldInfo.cs -------------------------------------------------------------------------------- /Runtime/NodeIO/SerializedFieldInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6baab3770ef14d8eab6c2b4b7a238b28 3 | timeCreated: 1614066305 -------------------------------------------------------------------------------- /Runtime/NodeIO/ValuePort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Runtime/NodeIO/ValuePort.cs -------------------------------------------------------------------------------- /Runtime/NodeIO/ValuePort.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b5660b2452a49bcaf19fc8d44c3b398 3 | timeCreated: 1613971228 -------------------------------------------------------------------------------- /Runtime/SerializableType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Runtime/SerializableType.cs -------------------------------------------------------------------------------- /Runtime/SerializableType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08b348fe0d524cc8be6f5f95f05a383e 3 | timeCreated: 1615311749 -------------------------------------------------------------------------------- /Runtime/VirtualGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Runtime/VirtualGraph.cs -------------------------------------------------------------------------------- /Runtime/VirtualGraph.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a2544ad2dc64a9c8c27a62ebe47b835 3 | timeCreated: 1615930976 -------------------------------------------------------------------------------- /Settings.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Settings.meta -------------------------------------------------------------------------------- /Settings/DefaultSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Settings/DefaultSettings.asset -------------------------------------------------------------------------------- /Settings/DefaultSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/Settings/DefaultSettings.asset.meta -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/package.json -------------------------------------------------------------------------------- /package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoffeeVampir3/Graphify/HEAD/package.json.meta --------------------------------------------------------------------------------