diff --git a/Raylib-cs/types/Mesh.cs b/Raylib-cs/types/Mesh.cs index f640db1..ccec9d3 100644 --- a/Raylib-cs/types/Mesh.cs +++ b/Raylib-cs/types/Mesh.cs @@ -154,19 +154,25 @@ public unsafe partial struct Mesh return new(Normals, 3 * VertexCount * sizeof(float) / sizeof(T)); } - /// Access + /// + /// Access + /// public readonly Span TangentsAs() where T : unmanaged { return new(Tangents, 4 * VertexCount * sizeof(float) / sizeof(T)); } - /// Access + /// + /// Access + /// public readonly Span ColorsAs() where T : unmanaged { return new(Colors, 4 * VertexCount * sizeof(byte) / sizeof(T)); } - /// Access + /// + /// Access + /// public readonly Span IndicesAs() where T : unmanaged { return new(Indices, 3 * TriangleCount * sizeof(ushort) / sizeof(T));