I am on class VTM 9, and I got to where Lee creates the Debug lines for the triangle, only it doesn't draw anything for me. Unless it has drawn the lines in the same blue as the background for some reason, although I doubt that because Lee's lines look white. What did I do wrong.
In TerrainPatch
Code:
public void DrawGrid()
{
Debug.DrawLine(Vertices[0], Vertices[Size]);
Debug.DrawLine(Vertices[Size], Vertices[Size + 1]);
Debug.DrawLine(Vertices[Size + 1], Vertices[0]);
}
In TerrainDemo
Code:
public void Update()
{
patch.DrawGrid();
}
can anyone help?