Skip to content

Commit

Permalink
v. 0.7.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Craxy authored and Craxy committed Jun 2, 2015
1 parent d8bbe97 commit ebd1097
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/ToggleTrafficLights/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
#if DEBUG
[assembly: AssemblyVersion("0.7.5.*")]
[assembly: AssemblyFileVersion("0.7.5.*")]
[assembly: AssemblyVersion("0.7.7.*")]
[assembly: AssemblyFileVersion("0.7.7.*")]
#else
[assembly: AssemblyVersion("0.7.5")]
[assembly: AssemblyFileVersion("0.7.5")]
[assembly: AssemblyVersion("0.7.7")]
[assembly: AssemblyFileVersion("0.7.7")]
#endif
10 changes: 10 additions & 0 deletions src/ToggleTrafficLights/Tools/ToggleTrafficLightsTool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,16 @@ private void HighlightNode(RenderManager.CameraInfo cameraInfo, int nodeId)

++Singleton<ToolManager>.instance.m_drawCallData.m_overlayCalls;
Singleton<RenderManager>.instance.OverlayEffect.DrawCircle(cameraInfo, color, position, info.m_halfWidth * 2, -1f, 1280f, false, false);

// // if underground: circle is projected on terrain surface -> draw another circle on road
// if (node.m_elevation < 0)
// {
// p.m_position.y = NetSegment.SampleTerrainHeight(info1, p.m_position, false, p.m_elevation);
//
// node.m_position.y = NetSegment.SampleTerrainHeight(info, position, false, node.m_elevation);
// }


}
#endregion

Expand Down

0 comments on commit ebd1097

Please sign in to comment.