1
0
Fork 0
forked from aly/qstbak

muffin v7.5.5

This commit is contained in:
alydev 2026-08-17 20:25:32 +10:00
parent a8f2c1df37
commit 6266f9e6b7
110 changed files with 14907 additions and 6073 deletions

View file

@ -0,0 +1,17 @@
using System.Numerics;
using System.Runtime.InteropServices;
namespace Auspex.Lighting.Internal;
[StructLayout(LayoutKind.Explicit, Size = 48)]
internal struct LightTransform
{
[FieldOffset(0)]
public Vector3 Position;
[FieldOffset(16)]
public Quaternion Rotation;
[FieldOffset(32)]
public Vector3 Scale;
}