Skip to content

Commit

Permalink
Fixed warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
alelievr committed Jan 22, 2021
1 parent 929218e commit 413de98
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Assets/Examples/DefaultNodes/Nodes/ColorNode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
public class ColorNode : BaseNode
{
[Output(name = "Color"), SerializeField]
public Color color;
new public Color color;

public override string name => "Color";
}
2 changes: 1 addition & 1 deletion Assets/Examples/DefaultNodes/Nodes/DrawerFieldTestNode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class DrawerFieldTestNode : BaseNode
public string stringInput;

[Input(name = "Color"), ShowAsDrawer]
public Color color;
new public Color color;

[Input(name = "Game Object"), ShowAsDrawer]
public GameObject gameObject;
Expand Down
2 changes: 1 addition & 1 deletion Assets/Examples/DefaultNodes/Nodes/FieldTestNode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class FieldTestNode : BaseNode
public Vector3 v3;
public Vector4 v4;
public LayerMask layer;
public Color color;
new public Color color;
public Bounds bounds;
public Rect rect;
public CameraClearFlags flags = CameraClearFlags.Color;
Expand Down

0 comments on commit 413de98

Please sign in to comment.