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 88public class ColorNode : BaseNode
99{
1010 [ Output ( name = "Color" ) , SerializeField ]
11- public Color color ;
11+ new public Color color ;
1212
1313 public override string name => "Color" ;
1414}
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ public class DrawerFieldTestNode : BaseNode
3030 public string stringInput ;
3131
3232 [ Input ( name = "Color" ) , ShowAsDrawer ]
33- public Color color ;
33+ new public Color color ;
3434
3535 [ Input ( name = "Game Object" ) , ShowAsDrawer ]
3636 public GameObject gameObject ;
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public class FieldTestNode : BaseNode
1414 public Vector3 v3 ;
1515 public Vector4 v4 ;
1616 public LayerMask layer ;
17- public Color color ;
17+ new public Color color ;
1818 public Bounds bounds ;
1919 public Rect rect ;
2020 public CameraClearFlags flags = CameraClearFlags . Color ;
You can’t perform that action at this time.
0 commit comments