Added Ufbx

This commit is contained in:
2026-03-14 18:29:18 +09:00
parent 254b08bc81
commit cce1cf7256
372 changed files with 11672 additions and 154 deletions

View File

@@ -138,11 +138,11 @@ public struct Vertex
{
public const int COUNT = 5;
public static readonly FixedText32 Position = new("POSITION");
public static readonly FixedText32 Normal = new("NORMAL");
public static readonly FixedText32 Tangent = new("TANGENT");
public static readonly FixedText32 Uv = new("TEXCOORD");
public static readonly FixedText32 Color = new("COLOR");
public static readonly FixedText32 Position = new("POSITION"u8);
public static readonly FixedText32 Normal = new("NORMAL"u8);
public static readonly FixedText32 Tangent = new("TANGENT"u8);
public static readonly FixedText32 Uv = new("TEXCOORD"u8);
public static readonly FixedText32 Color = new("COLOR"u8);
}
public float4 position;