Added ufbx warper

This commit is contained in:
2026-03-15 02:19:40 +09:00
parent cce1cf7256
commit 3e4084c42a
232 changed files with 10989 additions and 55 deletions

View File

@@ -0,0 +1,19 @@
namespace Ghost.Ufbx;
public unsafe struct LineSegment
{
private ufbx_line_segment* _ptr;
internal LineSegment(ufbx_line_segment* ptr)
{
_ptr = ptr;
}
public bool IsNull => _ptr == null;
public uint IndexBegin => _ptr->index_begin;
public uint NumIndices => _ptr->num_indices;
internal ufbx_line_segment* GetUnsafePtr() => _ptr;
}