From f00e1e5f2cdc736fd94d8a63ece3e38dc9dcbbaa Mon Sep 17 00:00:00 2001 From: Thor Brigsted Date: Mon, 22 Oct 2018 09:10:06 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dcaa133..34bb854 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ With a minimal footprint, it is ideal as a base for custom state machines, dialo ### Node example: ```csharp -[System.Serializable] +// public classes deriving from Node are registered as nodes for use within a graph public class MathNode : Node { // Adding [Input] or [Output] is all you need to do to register a field as a valid port on your node [Input] public float a;