コード例 #1
0
 void drawNoiseCoordQuad()
 {
     if (!this.debugQuad.isErsatzNull())
     {
         DebugLinesUtil.drawDebugQuad(this.debugQuad, Color.red);
     }
 }
コード例 #2
0
 void drawWindows()
 {
     for (int i = 0; i < windows.Count; ++i)
     {
         DebugLinesUtil.DrawWindow(windows[i]);             //, Color.green, Color.cyan);
     }
 }
コード例 #3
0
 void drawTestLines()
 {
     foreach (CoordLine line in lines)
     {
         DebugLinesUtil.debugLine(line.start, line.end, Color.cyan);
     }
 }
コード例 #4
0
 void drawUnitCubes()
 {
     foreach (Coord woco in unitCubes)
     {
         DebugLinesUtil.DrawUnitCubeAt(woco);
     }
 }
コード例 #5
0
    void drawColumns()
    {
//		foreach(Column colm in columns)
        for (int i = 0; i < columns.Count; ++i)
        {
            Column colm = columns[i];
            DebugLinesUtil.DrawDebugColumn(colm);
        }
    }
コード例 #6
0
 void drawFunnyChunkCoords()
 {
     DebugLinesUtil.drawDebugCubesForChunkCoordList(everGotDestroyChunkCos, Color.magenta, new Coord(1, 1, 4));
 }
コード例 #7
0
ファイル: TestRunner.cs プロジェクト: melsov/ICB_INMC_TWOO
    private void drawTrigCoords()
    {
//		DebugLinesUtil.DrawDebugCubesForChunksCoords(testTrigCoords);
        DebugLinesUtil.DrawDebugForChunkCoord(currentTestTrigCoord, new Color(.2f, .7f, .7f, 1f));
    }