├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── pull_request_template.md ├── .gitignore ├── CONTRIBUTORS.md ├── Images └── ExampleNodeyGraph.png ├── LICENSE.md ├── Licenses ├── JCMG_License.txt └── XNode_License.txt ├── README.md └── Unity ├── .gitignore ├── Assets ├── Examples.meta ├── Examples │ ├── LogicToy.meta │ ├── LogicToy │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── Examples.LogicToy.Editor.asmdef │ │ │ ├── Examples.LogicToy.Editor.asmdef.meta │ │ │ ├── LogicGraphEditor.cs │ │ │ ├── LogicGraphEditor.cs.meta │ │ │ ├── LogicNodeEditor.cs │ │ │ └── LogicNodeEditor.cs.meta │ │ ├── Example.asset │ │ ├── Example.asset.meta │ │ ├── Examples.LogicToy.asmdef │ │ ├── Examples.LogicToy.asmdef.meta │ │ ├── ITimerTick.cs │ │ ├── ITimerTick.cs.meta │ │ ├── LogicGraph.cs │ │ ├── LogicGraph.cs.meta │ │ ├── Nodes.meta │ │ └── Nodes │ │ │ ├── AndNode.cs │ │ │ ├── AndNode.cs.meta │ │ │ ├── LogicNode.cs │ │ │ ├── LogicNode.cs.meta │ │ │ ├── NotNode.cs │ │ │ ├── NotNode.cs.meta │ │ │ ├── PulseNode.cs │ │ │ ├── PulseNode.cs.meta │ │ │ ├── ToggleNode.cs │ │ │ └── ToggleNode.cs.meta │ ├── MathGraph.meta │ ├── MathGraph │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── DisplayValueEditor.cs │ │ │ ├── DisplayValueEditor.cs.meta │ │ │ ├── Examples.MathGraph.Editor.asmdef │ │ │ ├── Examples.MathGraph.Editor.asmdef.meta │ │ │ ├── MathGraphEditor.cs │ │ │ └── MathGraphEditor.cs.meta │ │ ├── Examples.MathGraph.asmdef │ │ ├── Examples.MathGraph.asmdef.meta │ │ ├── MathGraph.cs │ │ ├── MathGraph.cs.meta │ │ ├── New Math Graph.asset │ │ ├── New Math Graph.asset.meta │ │ ├── Nodes.meta │ │ └── Nodes │ │ │ ├── DisplayValue.cs │ │ │ ├── DisplayValue.cs.meta │ │ │ ├── MathNode.cs │ │ │ ├── MathNode.cs.meta │ │ │ ├── Vector.cs │ │ │ └── Vector.cs.meta │ ├── RuntimeMathGraph.meta │ ├── RuntimeMathGraph │ │ ├── Graphics.meta │ │ ├── Graphics │ │ │ ├── half.png │ │ │ ├── half.png.meta │ │ │ ├── xnode_dot.png │ │ │ ├── xnode_dot.png.meta │ │ │ ├── xnode_dot_outer.png │ │ │ ├── xnode_dot_outer.png.meta │ │ │ ├── xnode_node.png │ │ │ ├── xnode_node.png.meta │ │ │ ├── xnode_node_highlight.png │ │ │ └── xnode_node_highlight.png.meta │ │ ├── Prefabs.meta │ │ ├── Prefabs │ │ │ ├── Connection.prefab │ │ │ ├── Connection.prefab.meta │ │ │ ├── NodeGraph.prefab │ │ │ ├── NodeGraph.prefab.meta │ │ │ ├── Nodes.meta │ │ │ └── Nodes │ │ │ │ ├── DisplayValue.prefab │ │ │ │ ├── DisplayValue.prefab.meta │ │ │ │ ├── MathNode.prefab │ │ │ │ ├── MathNode.prefab.meta │ │ │ │ ├── Vector.prefab │ │ │ │ └── Vector.prefab.meta │ │ ├── Scenes.meta │ │ ├── Scenes │ │ │ ├── RuntimeGraph.unity │ │ │ └── RuntimeGraph.unity.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── Connection.cs │ │ │ ├── Connection.cs.meta │ │ │ ├── Examples.RuntimeMathGraph.asmdef │ │ │ ├── Examples.RuntimeMathGraph.asmdef.meta │ │ │ ├── NodeDrag.cs │ │ │ ├── NodeDrag.cs.meta │ │ │ ├── RuntimeMathGraph.cs │ │ │ ├── RuntimeMathGraph.cs.meta │ │ │ ├── RuntimeNodes.meta │ │ │ ├── RuntimeNodes │ │ │ ├── UGUIDisplayValue.cs │ │ │ ├── UGUIDisplayValue.cs.meta │ │ │ ├── UGUIMathBaseNode.cs │ │ │ ├── UGUIMathBaseNode.cs.meta │ │ │ ├── UGUIMathNode.cs │ │ │ ├── UGUIMathNode.cs.meta │ │ │ ├── UGUIVector.cs │ │ │ └── UGUIVector.cs.meta │ │ │ ├── UGUIContextMenu.cs │ │ │ ├── UGUIContextMenu.cs.meta │ │ │ ├── UGUIPort.cs │ │ │ ├── UGUIPort.cs.meta │ │ │ ├── UGUITooltip.cs │ │ │ └── UGUITooltip.cs.meta │ ├── StateMachine.meta │ └── StateMachine │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── Examples.StateMachine.Editor.asmdef │ │ ├── Examples.StateMachine.Editor.asmdef.meta │ │ ├── StateGraphEditor.cs │ │ ├── StateGraphEditor.cs.meta │ │ ├── StateNodeEditor.cs │ │ └── StateNodeEditor.cs.meta │ │ ├── Examples.StateMachine.asmdef │ │ ├── Examples.StateMachine.asmdef.meta │ │ ├── New State Graph.asset │ │ ├── New State Graph.asset.meta │ │ ├── Nodes.meta │ │ ├── Nodes │ │ ├── StateNode.cs │ │ └── StateNode.cs.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── StateGraph.cs │ │ └── StateGraph.cs.meta ├── JCMG.meta ├── JCMG │ ├── Nodey.meta │ └── Nodey │ │ ├── Docs.meta │ │ ├── Docs │ │ ├── Images.meta │ │ └── Images │ │ │ ├── portrait.png │ │ │ ├── portrait.png.meta │ │ │ ├── social_share_image.png │ │ │ └── social_share_image.png.meta │ │ ├── LICENSE.md │ │ ├── LICENSE.md.meta │ │ ├── Licenses.meta │ │ ├── Licenses │ │ ├── JCMG_License.txt │ │ ├── JCMG_License.txt.meta │ │ ├── ORIGINAL_LICENSE.md │ │ └── ORIGINAL_LICENSE.md.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ ├── Attributes.meta │ │ ├── Attributes │ │ ├── Drawers.meta │ │ ├── Drawers │ │ │ ├── NodeEnum.cs │ │ │ └── NodeEnum.cs.meta │ │ ├── Nodes.meta │ │ ├── Nodes │ │ │ ├── CreateNodeMenuAttribute.cs │ │ │ ├── CreateNodeMenuAttribute.cs.meta │ │ │ ├── NodeTintAttribute.cs │ │ │ ├── NodeTintAttribute.cs.meta │ │ │ ├── NodeWidthAttribute.cs │ │ │ └── NodeWidthAttribute.cs.meta │ │ ├── Ports.meta │ │ └── Ports │ │ │ ├── ConnectionType.cs │ │ │ ├── ConnectionType.cs.meta │ │ │ ├── InputAttribute.cs │ │ │ ├── InputAttribute.cs.meta │ │ │ ├── OutputAttribute.cs │ │ │ ├── OutputAttribute.cs.meta │ │ │ ├── PortDirectionType.cs │ │ │ ├── PortDirectionType.cs.meta │ │ │ ├── ShowBackingValue.cs │ │ │ ├── ShowBackingValue.cs.meta │ │ │ ├── TypeConstraint.cs │ │ │ └── TypeConstraint.cs.meta │ │ ├── Cache.meta │ │ ├── Cache │ │ ├── NodeDataCache.cs │ │ └── NodeDataCache.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── AssetProcessors.meta │ │ ├── AssetProcessors │ │ │ ├── GraphRenameFixAssetProcessor.cs │ │ │ ├── GraphRenameFixAssetProcessor.cs.meta │ │ │ ├── NodeEditorAssetModProcessor.cs │ │ │ └── NodeEditorAssetModProcessor.cs.meta │ │ ├── Attributes.meta │ │ ├── Attributes │ │ │ ├── Drawers.meta │ │ │ ├── Drawers │ │ │ │ ├── NodeEnumDrawer.cs │ │ │ │ ├── NodeEnumDrawer.cs.meta │ │ │ │ ├── Odin.meta │ │ │ │ └── Odin │ │ │ │ │ ├── InNodeEditorAttributeProcessor.cs │ │ │ │ │ ├── InNodeEditorAttributeProcessor.cs.meta │ │ │ │ │ ├── InputAttributeDrawer.cs │ │ │ │ │ ├── InputAttributeDrawer.cs.meta │ │ │ │ │ ├── OutputAttributeDrawer.cs │ │ │ │ │ └── OutputAttributeDrawer.cs.meta │ │ │ ├── GraphEditors.meta │ │ │ ├── GraphEditors │ │ │ │ ├── CustomNodeGraphEditorAttribute.cs │ │ │ │ └── CustomNodeGraphEditorAttribute.cs.meta │ │ │ ├── NodeEditors.meta │ │ │ └── NodeEditors │ │ │ │ ├── CustomNodeEditorAttribute.cs │ │ │ │ └── CustomNodeEditorAttribute.cs.meta │ │ ├── Inspectors.meta │ │ ├── Inspectors │ │ │ ├── Graphs.meta │ │ │ ├── Graphs │ │ │ │ ├── GlobalGraphEditor.cs │ │ │ │ ├── GlobalGraphEditor.cs.meta │ │ │ │ ├── NodeGraphEditor.cs │ │ │ │ └── NodeGraphEditor.cs.meta │ │ │ ├── NodeEditorBase.cs │ │ │ ├── NodeEditorBase.cs.meta │ │ │ ├── Nodes.meta │ │ │ └── Nodes │ │ │ │ ├── GlobalNodeEditor.cs │ │ │ │ ├── GlobalNodeEditor.cs.meta │ │ │ │ ├── NodeEditor.cs │ │ │ │ └── NodeEditor.cs.meta │ │ ├── JCMG.Nodey.Editor.asmdef │ │ ├── JCMG.Nodey.Editor.asmdef.meta │ │ ├── NodeyEditorConstants.cs │ │ ├── NodeyEditorConstants.cs.meta │ │ ├── NodeyMenuItems.cs │ │ ├── NodeyMenuItems.cs.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── ScriptTemplates.meta │ │ │ ├── ScriptTemplates │ │ │ │ ├── Nodey_NodeGraphTemplate.cs.txt │ │ │ │ ├── Nodey_NodeGraphTemplate.cs.txt.meta │ │ │ │ ├── Nodey_NodeTemplate.cs.txt │ │ │ │ └── Nodey_NodeTemplate.cs.txt.meta │ │ │ ├── nodey_dot.png │ │ │ ├── nodey_dot.png.meta │ │ │ ├── nodey_dot_outer.png │ │ │ ├── nodey_dot_outer.png.meta │ │ │ ├── nodey_node.png │ │ │ ├── nodey_node.png.meta │ │ │ ├── nodey_node_highlight.png │ │ │ ├── nodey_node_highlight.png.meta │ │ │ ├── nodey_node_workfile.psd │ │ │ └── nodey_node_workfile.psd.meta │ │ ├── Tools.meta │ │ ├── Tools │ │ │ ├── NodeEditorGUILayout.cs │ │ │ ├── NodeEditorGUILayout.cs.meta │ │ │ ├── NodeEditorPreferences.cs │ │ │ ├── NodeEditorPreferences.cs.meta │ │ │ ├── NodeEditorReflection.cs │ │ │ ├── NodeEditorReflection.cs.meta │ │ │ ├── NodeEditorResources.cs │ │ │ ├── NodeEditorResources.cs.meta │ │ │ ├── NodeEditorSettings.cs │ │ │ ├── NodeEditorSettings.cs.meta │ │ │ ├── NodeEditorUtilities.cs │ │ │ └── NodeEditorUtilities.cs.meta │ │ ├── VersionConstants.cs │ │ ├── VersionConstants.cs.meta │ │ ├── Windows.meta │ │ └── Windows │ │ │ ├── AboutWindow.cs │ │ │ ├── AboutWindow.cs.meta │ │ │ ├── NodeActivityType.cs │ │ │ ├── NodeActivityType.cs.meta │ │ │ ├── NodeEditorWindow.cs │ │ │ ├── NodeEditorWindow.cs.meta │ │ │ ├── NodeEditorWindow_Actions.cs │ │ │ ├── NodeEditorWindow_Actions.cs.meta │ │ │ ├── NodeEditorWindow_GUI.cs │ │ │ ├── NodeEditorWindow_GUI.cs.meta │ │ │ ├── NoodlePath.cs │ │ │ ├── NoodlePath.cs.meta │ │ │ ├── NoodleStroke.cs │ │ │ ├── NoodleStroke.cs.meta │ │ │ ├── RenamePopup.cs │ │ │ └── RenamePopup.cs.meta │ │ ├── JCMG.Nodey.asmdef │ │ ├── JCMG.Nodey.asmdef.meta │ │ ├── Node.cs │ │ ├── Node.cs.meta │ │ ├── NodeGraph.cs │ │ ├── NodeGraph.cs.meta │ │ ├── NodePort.cs │ │ ├── NodePort.cs.meta │ │ ├── NodeyRuntimeConstants.cs │ │ └── NodeyRuntimeConstants.cs.meta ├── PackageManifest.meta └── PackageManifest │ ├── Generated.meta │ ├── Generated │ ├── b38fa1a8-86fa-4b85-8ef5-23fc5548698b.meta │ └── b38fa1a8-86fa-4b85-8ef5-23fc5548698b │ │ ├── package.json │ │ └── package.json.meta │ ├── PackageManifestConfig.asset │ └── PackageManifestConfig.asset.meta ├── Examples.LogicToy.Editor.csproj.DotSettings ├── Examples.LogicToy.csproj.DotSettings ├── Examples.MathGraph.Editor.csproj.DotSettings ├── Examples.MathGraph.csproj.DotSettings ├── Examples.RuntimeMathGraph.csproj.DotSettings ├── Examples.StateMachine.Editor.csproj.DotSettings ├── Examples.StateMachine.csproj.DotSettings ├── JCMG.Nodey.Editor.csproj.DotSettings ├── JCMG.Nodey.csproj.DotSettings ├── Packages └── manifest.json └── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectSettings.asset.meta ├── ProjectVersion.txt ├── ProjectVersion.txt.meta ├── QualitySettings.asset ├── QualitySettings.asset.meta ├── TagManager.asset ├── TagManager.asset.meta ├── TimeManager.asset ├── TimeManager.asset.meta ├── UnityConnectSettings.asset ├── UnityConnectSettings.asset.meta ├── VFXManager.asset ├── VFXManager.asset.meta ├── XRSettings.asset └── XRSettings.asset.meta /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.cs eol=lf 2 | 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Images/ExampleNodeyGraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Images/ExampleNodeyGraph.png -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Licenses/JCMG_License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Licenses/JCMG_License.txt -------------------------------------------------------------------------------- /Licenses/XNode_License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Licenses/XNode_License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/README.md -------------------------------------------------------------------------------- /Unity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/.gitignore -------------------------------------------------------------------------------- /Unity/Assets/Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/LogicToy.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/LogicToy.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/LogicToy/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/LogicToy/Editor.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/LogicToy/Editor/Examples.LogicToy.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/LogicToy/Editor/Examples.LogicToy.Editor.asmdef -------------------------------------------------------------------------------- /Unity/Assets/Examples/LogicToy/Editor/Examples.LogicToy.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/LogicToy/Editor/Examples.LogicToy.Editor.asmdef.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/LogicToy/Editor/LogicGraphEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/LogicToy/Editor/LogicGraphEditor.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/LogicToy/Editor/LogicGraphEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/LogicToy/Editor/LogicGraphEditor.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/LogicToy/Editor/LogicNodeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/LogicToy/Editor/LogicNodeEditor.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/LogicToy/Editor/LogicNodeEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/LogicToy/Editor/LogicNodeEditor.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/LogicToy/Example.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/LogicToy/Example.asset -------------------------------------------------------------------------------- /Unity/Assets/Examples/LogicToy/Example.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/LogicToy/Example.asset.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/LogicToy/Examples.LogicToy.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/LogicToy/Examples.LogicToy.asmdef -------------------------------------------------------------------------------- /Unity/Assets/Examples/LogicToy/Examples.LogicToy.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/LogicToy/Examples.LogicToy.asmdef.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/LogicToy/ITimerTick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/LogicToy/ITimerTick.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/LogicToy/ITimerTick.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/LogicToy/ITimerTick.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/LogicToy/LogicGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/LogicToy/LogicGraph.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/LogicToy/LogicGraph.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/LogicToy/LogicGraph.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/LogicToy/Nodes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/LogicToy/Nodes.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/LogicToy/Nodes/AndNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/LogicToy/Nodes/AndNode.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/LogicToy/Nodes/AndNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/LogicToy/Nodes/AndNode.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/LogicToy/Nodes/LogicNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/LogicToy/Nodes/LogicNode.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/LogicToy/Nodes/LogicNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/LogicToy/Nodes/LogicNode.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/LogicToy/Nodes/NotNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/LogicToy/Nodes/NotNode.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/LogicToy/Nodes/NotNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/LogicToy/Nodes/NotNode.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/LogicToy/Nodes/PulseNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/LogicToy/Nodes/PulseNode.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/LogicToy/Nodes/PulseNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/LogicToy/Nodes/PulseNode.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/LogicToy/Nodes/ToggleNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/LogicToy/Nodes/ToggleNode.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/LogicToy/Nodes/ToggleNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/LogicToy/Nodes/ToggleNode.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/MathGraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/MathGraph.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/MathGraph/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/MathGraph/Editor.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/MathGraph/Editor/DisplayValueEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/MathGraph/Editor/DisplayValueEditor.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/MathGraph/Editor/DisplayValueEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/MathGraph/Editor/DisplayValueEditor.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/MathGraph/Editor/Examples.MathGraph.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/MathGraph/Editor/Examples.MathGraph.Editor.asmdef -------------------------------------------------------------------------------- /Unity/Assets/Examples/MathGraph/Editor/Examples.MathGraph.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/MathGraph/Editor/Examples.MathGraph.Editor.asmdef.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/MathGraph/Editor/MathGraphEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/MathGraph/Editor/MathGraphEditor.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/MathGraph/Editor/MathGraphEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/MathGraph/Editor/MathGraphEditor.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/MathGraph/Examples.MathGraph.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/MathGraph/Examples.MathGraph.asmdef -------------------------------------------------------------------------------- /Unity/Assets/Examples/MathGraph/Examples.MathGraph.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/MathGraph/Examples.MathGraph.asmdef.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/MathGraph/MathGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/MathGraph/MathGraph.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/MathGraph/MathGraph.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/MathGraph/MathGraph.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/MathGraph/New Math Graph.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/MathGraph/New Math Graph.asset -------------------------------------------------------------------------------- /Unity/Assets/Examples/MathGraph/New Math Graph.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/MathGraph/New Math Graph.asset.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/MathGraph/Nodes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/MathGraph/Nodes.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/MathGraph/Nodes/DisplayValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/MathGraph/Nodes/DisplayValue.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/MathGraph/Nodes/DisplayValue.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/MathGraph/Nodes/DisplayValue.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/MathGraph/Nodes/MathNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/MathGraph/Nodes/MathNode.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/MathGraph/Nodes/MathNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/MathGraph/Nodes/MathNode.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/MathGraph/Nodes/Vector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/MathGraph/Nodes/Vector.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/MathGraph/Nodes/Vector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/MathGraph/Nodes/Vector.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Graphics.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Graphics.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Graphics/half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Graphics/half.png -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Graphics/half.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Graphics/half.png.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Graphics/xnode_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Graphics/xnode_dot.png -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Graphics/xnode_dot.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Graphics/xnode_dot.png.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Graphics/xnode_dot_outer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Graphics/xnode_dot_outer.png -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Graphics/xnode_dot_outer.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Graphics/xnode_dot_outer.png.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Graphics/xnode_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Graphics/xnode_node.png -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Graphics/xnode_node.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Graphics/xnode_node.png.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Graphics/xnode_node_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Graphics/xnode_node_highlight.png -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Graphics/xnode_node_highlight.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Graphics/xnode_node_highlight.png.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Prefabs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Prefabs/Connection.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Prefabs/Connection.prefab -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Prefabs/Connection.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Prefabs/Connection.prefab.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Prefabs/NodeGraph.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Prefabs/NodeGraph.prefab -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Prefabs/NodeGraph.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Prefabs/NodeGraph.prefab.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Prefabs/Nodes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Prefabs/Nodes.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Prefabs/Nodes/DisplayValue.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Prefabs/Nodes/DisplayValue.prefab -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Prefabs/Nodes/DisplayValue.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Prefabs/Nodes/DisplayValue.prefab.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Prefabs/Nodes/MathNode.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Prefabs/Nodes/MathNode.prefab -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Prefabs/Nodes/MathNode.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Prefabs/Nodes/MathNode.prefab.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Prefabs/Nodes/Vector.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Prefabs/Nodes/Vector.prefab -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Prefabs/Nodes/Vector.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Prefabs/Nodes/Vector.prefab.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Scenes.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Scenes/RuntimeGraph.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Scenes/RuntimeGraph.unity -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Scenes/RuntimeGraph.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Scenes/RuntimeGraph.unity.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Scripts.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Scripts/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Scripts/Connection.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Scripts/Connection.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Scripts/Connection.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Scripts/Examples.RuntimeMathGraph.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Scripts/Examples.RuntimeMathGraph.asmdef -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Scripts/Examples.RuntimeMathGraph.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Scripts/Examples.RuntimeMathGraph.asmdef.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Scripts/NodeDrag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Scripts/NodeDrag.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Scripts/NodeDrag.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Scripts/NodeDrag.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Scripts/RuntimeMathGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Scripts/RuntimeMathGraph.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Scripts/RuntimeMathGraph.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Scripts/RuntimeMathGraph.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Scripts/RuntimeNodes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Scripts/RuntimeNodes.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Scripts/RuntimeNodes/UGUIDisplayValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Scripts/RuntimeNodes/UGUIDisplayValue.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Scripts/RuntimeNodes/UGUIDisplayValue.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Scripts/RuntimeNodes/UGUIDisplayValue.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Scripts/RuntimeNodes/UGUIMathBaseNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Scripts/RuntimeNodes/UGUIMathBaseNode.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Scripts/RuntimeNodes/UGUIMathBaseNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Scripts/RuntimeNodes/UGUIMathBaseNode.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Scripts/RuntimeNodes/UGUIMathNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Scripts/RuntimeNodes/UGUIMathNode.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Scripts/RuntimeNodes/UGUIMathNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Scripts/RuntimeNodes/UGUIMathNode.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Scripts/RuntimeNodes/UGUIVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Scripts/RuntimeNodes/UGUIVector.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Scripts/RuntimeNodes/UGUIVector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Scripts/RuntimeNodes/UGUIVector.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Scripts/UGUIContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Scripts/UGUIContextMenu.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Scripts/UGUIContextMenu.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Scripts/UGUIContextMenu.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Scripts/UGUIPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Scripts/UGUIPort.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Scripts/UGUIPort.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Scripts/UGUIPort.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Scripts/UGUITooltip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Scripts/UGUITooltip.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/RuntimeMathGraph/Scripts/UGUITooltip.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/RuntimeMathGraph/Scripts/UGUITooltip.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/StateMachine.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/StateMachine.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/StateMachine/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/StateMachine/Editor.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/StateMachine/Editor/Examples.StateMachine.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/StateMachine/Editor/Examples.StateMachine.Editor.asmdef -------------------------------------------------------------------------------- /Unity/Assets/Examples/StateMachine/Editor/Examples.StateMachine.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/StateMachine/Editor/Examples.StateMachine.Editor.asmdef.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/StateMachine/Editor/StateGraphEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/StateMachine/Editor/StateGraphEditor.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/StateMachine/Editor/StateGraphEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/StateMachine/Editor/StateGraphEditor.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/StateMachine/Editor/StateNodeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/StateMachine/Editor/StateNodeEditor.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/StateMachine/Editor/StateNodeEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/StateMachine/Editor/StateNodeEditor.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/StateMachine/Examples.StateMachine.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/StateMachine/Examples.StateMachine.asmdef -------------------------------------------------------------------------------- /Unity/Assets/Examples/StateMachine/Examples.StateMachine.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/StateMachine/Examples.StateMachine.asmdef.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/StateMachine/New State Graph.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/StateMachine/New State Graph.asset -------------------------------------------------------------------------------- /Unity/Assets/Examples/StateMachine/New State Graph.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/StateMachine/New State Graph.asset.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/StateMachine/Nodes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/StateMachine/Nodes.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/StateMachine/Nodes/StateNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/StateMachine/Nodes/StateNode.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/StateMachine/Nodes/StateNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/StateMachine/Nodes/StateNode.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/StateMachine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/StateMachine/README.md -------------------------------------------------------------------------------- /Unity/Assets/Examples/StateMachine/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/StateMachine/README.md.meta -------------------------------------------------------------------------------- /Unity/Assets/Examples/StateMachine/StateGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/StateMachine/StateGraph.cs -------------------------------------------------------------------------------- /Unity/Assets/Examples/StateMachine/StateGraph.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/Examples/StateMachine/StateGraph.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Docs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Docs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Docs/Images.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Docs/Images.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Docs/Images/portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Docs/Images/portrait.png -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Docs/Images/portrait.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Docs/Images/portrait.png.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Docs/Images/social_share_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Docs/Images/social_share_image.png -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Docs/Images/social_share_image.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Docs/Images/social_share_image.png.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/LICENSE.md -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/LICENSE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/LICENSE.md.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Licenses.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Licenses.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Licenses/JCMG_License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Licenses/JCMG_License.txt -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Licenses/JCMG_License.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Licenses/JCMG_License.txt.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Licenses/ORIGINAL_LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Licenses/ORIGINAL_LICENSE.md -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Licenses/ORIGINAL_LICENSE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Licenses/ORIGINAL_LICENSE.md.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Attributes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Attributes.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Attributes/Drawers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Attributes/Drawers.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Attributes/Drawers/NodeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Attributes/Drawers/NodeEnum.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Attributes/Drawers/NodeEnum.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Attributes/Drawers/NodeEnum.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Attributes/Nodes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Attributes/Nodes.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Attributes/Nodes/CreateNodeMenuAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Attributes/Nodes/CreateNodeMenuAttribute.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Attributes/Nodes/CreateNodeMenuAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Attributes/Nodes/CreateNodeMenuAttribute.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Attributes/Nodes/NodeTintAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Attributes/Nodes/NodeTintAttribute.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Attributes/Nodes/NodeTintAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Attributes/Nodes/NodeTintAttribute.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Attributes/Nodes/NodeWidthAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Attributes/Nodes/NodeWidthAttribute.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Attributes/Nodes/NodeWidthAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Attributes/Nodes/NodeWidthAttribute.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Attributes/Ports.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Attributes/Ports.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Attributes/Ports/ConnectionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Attributes/Ports/ConnectionType.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Attributes/Ports/ConnectionType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Attributes/Ports/ConnectionType.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Attributes/Ports/InputAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Attributes/Ports/InputAttribute.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Attributes/Ports/InputAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Attributes/Ports/InputAttribute.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Attributes/Ports/OutputAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Attributes/Ports/OutputAttribute.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Attributes/Ports/OutputAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Attributes/Ports/OutputAttribute.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Attributes/Ports/PortDirectionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Attributes/Ports/PortDirectionType.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Attributes/Ports/PortDirectionType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Attributes/Ports/PortDirectionType.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Attributes/Ports/ShowBackingValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Attributes/Ports/ShowBackingValue.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Attributes/Ports/ShowBackingValue.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Attributes/Ports/ShowBackingValue.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Attributes/Ports/TypeConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Attributes/Ports/TypeConstraint.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Attributes/Ports/TypeConstraint.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Attributes/Ports/TypeConstraint.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Cache.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Cache.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Cache/NodeDataCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Cache/NodeDataCache.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Cache/NodeDataCache.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Cache/NodeDataCache.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/AssetProcessors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/AssetProcessors.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/AssetProcessors/GraphRenameFixAssetProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/AssetProcessors/GraphRenameFixAssetProcessor.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/AssetProcessors/GraphRenameFixAssetProcessor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/AssetProcessors/GraphRenameFixAssetProcessor.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/AssetProcessors/NodeEditorAssetModProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/AssetProcessors/NodeEditorAssetModProcessor.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/AssetProcessors/NodeEditorAssetModProcessor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/AssetProcessors/NodeEditorAssetModProcessor.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/Drawers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/Drawers.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/Drawers/NodeEnumDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/Drawers/NodeEnumDrawer.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/Drawers/NodeEnumDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/Drawers/NodeEnumDrawer.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/Drawers/Odin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/Drawers/Odin.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/Drawers/Odin/InNodeEditorAttributeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/Drawers/Odin/InNodeEditorAttributeProcessor.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/Drawers/Odin/InNodeEditorAttributeProcessor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/Drawers/Odin/InNodeEditorAttributeProcessor.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/Drawers/Odin/InputAttributeDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/Drawers/Odin/InputAttributeDrawer.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/Drawers/Odin/InputAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/Drawers/Odin/InputAttributeDrawer.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/Drawers/Odin/OutputAttributeDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/Drawers/Odin/OutputAttributeDrawer.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/Drawers/Odin/OutputAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/Drawers/Odin/OutputAttributeDrawer.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/GraphEditors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/GraphEditors.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/GraphEditors/CustomNodeGraphEditorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/GraphEditors/CustomNodeGraphEditorAttribute.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/GraphEditors/CustomNodeGraphEditorAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/GraphEditors/CustomNodeGraphEditorAttribute.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/NodeEditors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/NodeEditors.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/NodeEditors/CustomNodeEditorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/NodeEditors/CustomNodeEditorAttribute.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/NodeEditors/CustomNodeEditorAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Attributes/NodeEditors/CustomNodeEditorAttribute.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Inspectors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Inspectors.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Inspectors/Graphs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Inspectors/Graphs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Inspectors/Graphs/GlobalGraphEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Inspectors/Graphs/GlobalGraphEditor.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Inspectors/Graphs/GlobalGraphEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Inspectors/Graphs/GlobalGraphEditor.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Inspectors/Graphs/NodeGraphEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Inspectors/Graphs/NodeGraphEditor.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Inspectors/Graphs/NodeGraphEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Inspectors/Graphs/NodeGraphEditor.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Inspectors/NodeEditorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Inspectors/NodeEditorBase.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Inspectors/NodeEditorBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Inspectors/NodeEditorBase.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Inspectors/Nodes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Inspectors/Nodes.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Inspectors/Nodes/GlobalNodeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Inspectors/Nodes/GlobalNodeEditor.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Inspectors/Nodes/GlobalNodeEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Inspectors/Nodes/GlobalNodeEditor.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Inspectors/Nodes/NodeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Inspectors/Nodes/NodeEditor.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Inspectors/Nodes/NodeEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Inspectors/Nodes/NodeEditor.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/JCMG.Nodey.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/JCMG.Nodey.Editor.asmdef -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/JCMG.Nodey.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/JCMG.Nodey.Editor.asmdef.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/NodeyEditorConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/NodeyEditorConstants.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/NodeyEditorConstants.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/NodeyEditorConstants.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/NodeyMenuItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/NodeyMenuItems.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/NodeyMenuItems.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/NodeyMenuItems.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/ScriptTemplates.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/ScriptTemplates.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/ScriptTemplates/Nodey_NodeGraphTemplate.cs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/ScriptTemplates/Nodey_NodeGraphTemplate.cs.txt -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/ScriptTemplates/Nodey_NodeGraphTemplate.cs.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/ScriptTemplates/Nodey_NodeGraphTemplate.cs.txt.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/ScriptTemplates/Nodey_NodeTemplate.cs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/ScriptTemplates/Nodey_NodeTemplate.cs.txt -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/ScriptTemplates/Nodey_NodeTemplate.cs.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/ScriptTemplates/Nodey_NodeTemplate.cs.txt.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/nodey_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/nodey_dot.png -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/nodey_dot.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/nodey_dot.png.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/nodey_dot_outer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/nodey_dot_outer.png -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/nodey_dot_outer.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/nodey_dot_outer.png.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/nodey_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/nodey_node.png -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/nodey_node.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/nodey_node.png.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/nodey_node_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/nodey_node_highlight.png -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/nodey_node_highlight.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/nodey_node_highlight.png.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/nodey_node_workfile.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/nodey_node_workfile.psd -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/nodey_node_workfile.psd.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Resources/nodey_node_workfile.psd.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Tools.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Tools.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Tools/NodeEditorGUILayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Tools/NodeEditorGUILayout.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Tools/NodeEditorGUILayout.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Tools/NodeEditorGUILayout.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Tools/NodeEditorPreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Tools/NodeEditorPreferences.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Tools/NodeEditorPreferences.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Tools/NodeEditorPreferences.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Tools/NodeEditorReflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Tools/NodeEditorReflection.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Tools/NodeEditorReflection.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Tools/NodeEditorReflection.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Tools/NodeEditorResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Tools/NodeEditorResources.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Tools/NodeEditorResources.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Tools/NodeEditorResources.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Tools/NodeEditorSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Tools/NodeEditorSettings.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Tools/NodeEditorSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Tools/NodeEditorSettings.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Tools/NodeEditorUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Tools/NodeEditorUtilities.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Tools/NodeEditorUtilities.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Tools/NodeEditorUtilities.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/VersionConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/VersionConstants.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/VersionConstants.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/VersionConstants.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/AboutWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/AboutWindow.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/AboutWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/AboutWindow.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/NodeActivityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/NodeActivityType.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/NodeActivityType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/NodeActivityType.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/NodeEditorWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/NodeEditorWindow.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/NodeEditorWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/NodeEditorWindow.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/NodeEditorWindow_Actions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/NodeEditorWindow_Actions.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/NodeEditorWindow_Actions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/NodeEditorWindow_Actions.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/NodeEditorWindow_GUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/NodeEditorWindow_GUI.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/NodeEditorWindow_GUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/NodeEditorWindow_GUI.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/NoodlePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/NoodlePath.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/NoodlePath.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/NoodlePath.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/NoodleStroke.cs: -------------------------------------------------------------------------------- 1 | namespace JCMG.Nodey.Editor 2 | { 3 | public enum NoodleStroke 4 | { 5 | Full, 6 | Dashed 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/NoodleStroke.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/NoodleStroke.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/RenamePopup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/RenamePopup.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/RenamePopup.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Editor/Windows/RenamePopup.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/JCMG.Nodey.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/JCMG.Nodey.asmdef -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/JCMG.Nodey.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/JCMG.Nodey.asmdef.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Node.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/Node.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/Node.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/NodeGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/NodeGraph.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/NodeGraph.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/NodeGraph.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/NodePort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/NodePort.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/NodePort.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/NodePort.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/NodeyRuntimeConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/NodeyRuntimeConstants.cs -------------------------------------------------------------------------------- /Unity/Assets/JCMG/Nodey/Scripts/NodeyRuntimeConstants.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/JCMG/Nodey/Scripts/NodeyRuntimeConstants.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/PackageManifest.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/PackageManifest.meta -------------------------------------------------------------------------------- /Unity/Assets/PackageManifest/Generated.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/PackageManifest/Generated.meta -------------------------------------------------------------------------------- /Unity/Assets/PackageManifest/Generated/b38fa1a8-86fa-4b85-8ef5-23fc5548698b.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/PackageManifest/Generated/b38fa1a8-86fa-4b85-8ef5-23fc5548698b.meta -------------------------------------------------------------------------------- /Unity/Assets/PackageManifest/Generated/b38fa1a8-86fa-4b85-8ef5-23fc5548698b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/PackageManifest/Generated/b38fa1a8-86fa-4b85-8ef5-23fc5548698b/package.json -------------------------------------------------------------------------------- /Unity/Assets/PackageManifest/Generated/b38fa1a8-86fa-4b85-8ef5-23fc5548698b/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/PackageManifest/Generated/b38fa1a8-86fa-4b85-8ef5-23fc5548698b/package.json.meta -------------------------------------------------------------------------------- /Unity/Assets/PackageManifest/PackageManifestConfig.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/PackageManifest/PackageManifestConfig.asset -------------------------------------------------------------------------------- /Unity/Assets/PackageManifest/PackageManifestConfig.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Assets/PackageManifest/PackageManifestConfig.asset.meta -------------------------------------------------------------------------------- /Unity/Examples.LogicToy.Editor.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Examples.LogicToy.Editor.csproj.DotSettings -------------------------------------------------------------------------------- /Unity/Examples.LogicToy.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Examples.LogicToy.csproj.DotSettings -------------------------------------------------------------------------------- /Unity/Examples.MathGraph.Editor.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Examples.MathGraph.Editor.csproj.DotSettings -------------------------------------------------------------------------------- /Unity/Examples.MathGraph.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Examples.MathGraph.csproj.DotSettings -------------------------------------------------------------------------------- /Unity/Examples.RuntimeMathGraph.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Examples.RuntimeMathGraph.csproj.DotSettings -------------------------------------------------------------------------------- /Unity/Examples.StateMachine.Editor.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Examples.StateMachine.Editor.csproj.DotSettings -------------------------------------------------------------------------------- /Unity/Examples.StateMachine.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Examples.StateMachine.csproj.DotSettings -------------------------------------------------------------------------------- /Unity/JCMG.Nodey.Editor.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/JCMG.Nodey.Editor.csproj.DotSettings -------------------------------------------------------------------------------- /Unity/JCMG.Nodey.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/JCMG.Nodey.csproj.DotSettings -------------------------------------------------------------------------------- /Unity/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/Packages/manifest.json -------------------------------------------------------------------------------- /Unity/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/ProjectSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18f2c2702f01ae2489b77659ade9ba3d -------------------------------------------------------------------------------- /Unity/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /Unity/ProjectSettings/ProjectVersion.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61a7ce21e9b1c3244bebfa63e31a1ea6 -------------------------------------------------------------------------------- /Unity/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/QualitySettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e7ad3675cc2e0f41b734ecf5b613250 -------------------------------------------------------------------------------- /Unity/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/TagManager.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 666f328a81b1fad4bacb89a20569bca9 -------------------------------------------------------------------------------- /Unity/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/TimeManager.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0317f85419387b4592e33cc3816d9c3 -------------------------------------------------------------------------------- /Unity/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/UnityConnectSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 978466b50ce5dee469662713ecaf416d -------------------------------------------------------------------------------- /Unity/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/VFXManager.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b1b7b0394c74384b9df2975b91f9511 -------------------------------------------------------------------------------- /Unity/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffcampbellmakesgames/Nodey/HEAD/Unity/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/XRSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 889bcfeae26d3314f95f6b527ffb6a4a --------------------------------------------------------------------------------