Files
brickcraft/Assets/Scripts/Utils/FaceMap.cs
tetreum b8cfc79c9f + Only add visible brick faces to ChunkRenderer
+ Low poly version of 3003 brick for terrain generation
2021-02-14 18:20:23 +01:00

11 lines
155 B
C#

using UnityEngine;
namespace Brickcraft.Utils
{
public class FaceMap
{
public Vector3[] vertices;
public int[] triangles;
}
}