2024-10-13 00:08:01 +02:00
|
|
|
|
using System.Numerics;
|
|
|
|
|
|
|
|
|
|
namespace Nerfed.Runtime.Components
|
|
|
|
|
{
|
2024-10-22 23:54:36 +02:00
|
|
|
|
public readonly record struct LocalTransform(Vector3 position, Quaternion rotation, Vector3 scale)
|
2024-10-13 00:08:01 +02:00
|
|
|
|
{
|
2024-10-13 01:20:23 +02:00
|
|
|
|
public static readonly LocalTransform Identity = new(Vector3.Zero, Quaternion.Identity, Vector3.One);
|
2024-10-13 00:08:01 +02:00
|
|
|
|
}
|
|
|
|
|
}
|