public VehicleRestrictionsTool(TrafficManagerTool mainTool) : base(mainTool)
 {
     SecondPanelTexture          = TrafficManagerTool.MakeTex(1, 1, new Color(0.5f, 0.5f, 0.5f, 1f));
     currentRestrictedSegmentIds = new HashSet <ushort>();
 }
 public SpeedLimitsTool(TrafficManagerTool mainTool) : base(mainTool)
 {
     SecondPanelTexture         = TrafficManagerTool.MakeTex(1, 1, new Color(0.5f, 0.5f, 0.5f, 1f));
     currentlyVisibleSegmentIds = new HashSet <ushort>();
     roadTex = new Texture2D(guiSpeedSignSize, guiSpeedSignSize);
 }
Example #3
0
 public LaneArrowTool(TrafficManagerTool mainTool) : base(mainTool)
 {
     SecondPanelTexture = TrafficManagerTool.MakeTex(1, 1, new Color(0.5f, 0.5f, 0.5f, 1f));
 }
 public VehicleRestrictionsTool(TrafficManagerTool mainTool) : base(mainTool)
 {
     SecondPanelTexture = TrafficManagerTool.MakeTex(1, 1, new Color(0.5f, 0.5f, 0.5f, 1f));
 }