private NestElement InstantiateIShapeRoad(EnumRoadHVDirection direction)
    {
        var roadData = new IShapeRoadData(direction);

        //  roadData.IsUnderConstruction = true;
        return(NestSystem.Instance.InstantiateNestElement(roadData));
    }
Example #2
0
 public IShapeRoadData(EnumRoadHVDirection direction)
 {
     Direction = direction;
 }
Example #3
0
    private NestElement InstantiateIShapeRoad(EnumRoadHVDirection direction)
    {
        var roadData = new IShapeRoadData(direction);

        return(NestSystem.Instance.InstantiateNestElement(roadData));
    }