Terreno de 5 x 5 vértices |
Terreno de 20 x 20 vértices |
void AlteraVerticesDoTerreno() { for (int x=0;x<nVerticeX;x++) { for (int z=0;z<nVerticeZ;z++) { if ((x<5) || (z < 5)) PontosDoTerreno[x][z].Y = 0; if (x>(nVerticeX-5) || z >(nVerticeZ-5)) PontosDoTerreno[x][z].Y = 0; } } } |
Figura - Exemplo de alterações no terreno
|
Bom trabalho !