feat(core): add Vertex.TerrainLayer + LandblockMesh layer map
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
bc69f0cdf1
commit
324abed6eb
7 changed files with 64 additions and 29 deletions
|
|
@ -2,4 +2,8 @@ using System.Numerics;
|
|||
|
||||
namespace AcDream.Core.Terrain;
|
||||
|
||||
public readonly record struct Vertex(Vector3 Position, Vector3 Normal, Vector2 TexCoord);
|
||||
public readonly record struct Vertex(
|
||||
Vector3 Position,
|
||||
Vector3 Normal,
|
||||
Vector2 TexCoord,
|
||||
uint TerrainLayer);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue