From 7a4c4756985986aab43a6b3de9bf56b073f7b79f Mon Sep 17 00:00:00 2001 From: Thor Brigsted Date: Mon, 25 Sep 2017 00:24:04 +0200 Subject: [PATCH 1/4] Update README.md --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index a85ea83..b7c46cf 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,21 @@ ### UnityNodeEditorCore A simple, userfriendly node editor framework for unity. Ideal as a base for custom state machines, dialogue systems, decision makers etc. + +--- +Node example: +```csharp +[System.Serializable] +public class MathNode : Node { + [Input] public float a; + [Input] public float b; + [Output] public float result; + public enum MathType { Add, Subtract, Multiply, Divide} + public MathType mathType = MathType.Add; + + protected override void Init() { + name = "Math"; + } +} +``` +![editor](https://user-images.githubusercontent.com/6402525/30787371-1c3ae552-a187-11e7-853a-214914c2ba69.PNG) From 69c4267b7610f809482bc9ea03637234a5f25f49 Mon Sep 17 00:00:00 2001 From: Thor Brigsted Date: Mon, 25 Sep 2017 11:20:58 +0200 Subject: [PATCH 2/4] Update README.md --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b7c46cf..df77d78 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,8 @@ ### UnityNodeEditorCore A simple, userfriendly node editor framework for unity. Ideal as a base for custom state machines, dialogue systems, decision makers etc. ---- +![editor](https://user-images.githubusercontent.com/6402525/30787371-1c3ae552-a187-11e7-853a-214914c2ba69.PNG) + Node example: ```csharp [System.Serializable] @@ -18,4 +19,6 @@ public class MathNode : Node { } } ``` -![editor](https://user-images.githubusercontent.com/6402525/30787371-1c3ae552-a187-11e7-853a-214914c2ba69.PNG) + +Join the [Discord](https://discord.gg/qgPrHv4 "Join Discord server") server to leave feedback or get support. +Feel free to also leave suggestions/requests in the [issues](https://github.com/Siccity/UnityNodeEditorCore/issues "Go to Issues") page. From 50fef1469936024d10f880cfcb78081cf17d7ab0 Mon Sep 17 00:00:00 2001 From: Thor Brigsted Date: Mon, 25 Sep 2017 11:33:37 +0200 Subject: [PATCH 3/4] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index df77d78..c885f98 100644 --- a/README.md +++ b/README.md @@ -22,3 +22,6 @@ public class MathNode : Node { Join the [Discord](https://discord.gg/qgPrHv4 "Join Discord server") server to leave feedback or get support. Feel free to also leave suggestions/requests in the [issues](https://github.com/Siccity/UnityNodeEditorCore/issues "Go to Issues") page. + +Projects using UnityNodeEditorCore: +* [Graphmesh](https://github.com/Siccity/Graphmesh "Go to github page) From 984cc277fa3656c2d9f0705424de1e67323bdd03 Mon Sep 17 00:00:00 2001 From: Thor Brigsted Date: Mon, 25 Sep 2017 11:33:59 +0200 Subject: [PATCH 4/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c885f98..61cd405 100644 --- a/README.md +++ b/README.md @@ -24,4 +24,4 @@ Join the [Discord](https://discord.gg/qgPrHv4 "Join Discord server") server to l Feel free to also leave suggestions/requests in the [issues](https://github.com/Siccity/UnityNodeEditorCore/issues "Go to Issues") page. Projects using UnityNodeEditorCore: -* [Graphmesh](https://github.com/Siccity/Graphmesh "Go to github page) +* [Graphmesh](https://github.com/Siccity/Graphmesh "Go to github page")