添加插件

This commit is contained in:
2025-11-10 00:08:26 +08:00
parent 4059c207c0
commit 76f80db694
2814 changed files with 436400 additions and 178 deletions

View File

@@ -0,0 +1,41 @@
using System;
using System.Runtime.InteropServices;
#if (OBI_MATHEMATICS)
using Unity.Mathematics;
#endif
namespace Obi
{
[Serializable]
[StructLayout(LayoutKind.Sequential)]
public struct VInt4
{
public int x;
public int y;
public int z;
public int w;
public VInt4(int x, int y, int z, int w)
{
this.x = x;
this.y = y;
this.z = z;
this.w = w;
}
public VInt4(int x)
{
this.x = x;
this.y = x;
this.z = x;
this.w = x;
}
#if (OBI_MATHEMATICS)
public static implicit operator VInt4(int4 i) => new VInt4(i.x, i.y, i.z, i.w);
public static implicit operator int4(VInt4 i) => new int4(i.x, i.y, i.z, i.w);
#endif
}
}