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,21 @@
namespace Ghost.Ufbx;
public unsafe struct CoordinateAxes
{
private ufbx_coordinate_axes* _ptr;
internal CoordinateAxes(ufbx_coordinate_axes* ptr)
{
_ptr = ptr;
}
public bool IsNull => _ptr == null;
public ufbx_coordinate_axis Right => _ptr->right;
public ufbx_coordinate_axis Up => _ptr->up;
public ufbx_coordinate_axis Front => _ptr->front;
internal ufbx_coordinate_axes* GetUnsafePtr() => _ptr;
}