File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Assets/Examples/DefaultNodes/Nodes Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 8
8
public class ColorNode : BaseNode
9
9
{
10
10
[ Output ( name = "Color" ) , SerializeField ]
11
- public Color color ;
11
+ new public Color color ;
12
12
13
13
public override string name => "Color" ;
14
14
}
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ public class DrawerFieldTestNode : BaseNode
30
30
public string stringInput ;
31
31
32
32
[ Input ( name = "Color" ) , ShowAsDrawer ]
33
- public Color color ;
33
+ new public Color color ;
34
34
35
35
[ Input ( name = "Game Object" ) , ShowAsDrawer ]
36
36
public GameObject gameObject ;
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public class FieldTestNode : BaseNode
14
14
public Vector3 v3 ;
15
15
public Vector4 v4 ;
16
16
public LayerMask layer ;
17
- public Color color ;
17
+ new public Color color ;
18
18
public Bounds bounds ;
19
19
public Rect rect ;
20
20
public CameraClearFlags flags = CameraClearFlags . Color ;
You can’t perform that action at this time.
0 commit comments