testing building some core systems

- serialization
- chunks
- parralelfor test
This commit is contained in:
max
2026-04-24 19:21:03 +02:00
parent 5eaf3547dc
commit fec2cd8d24
15 changed files with 999 additions and 98 deletions
@@ -1,7 +1,9 @@
using System.Numerics;
using Nerfed.Runtime.Scene;
namespace Nerfed.Runtime.Components
{
[SceneComponent]
public readonly record struct LocalTransform(Vector3 position, Quaternion rotation, Vector3 scale)
{
public static readonly LocalTransform Identity = new(Vector3.Zero, Quaternion.Identity, Vector3.One);
+4 -1
View File
@@ -1,4 +1,7 @@
namespace Nerfed.Runtime.Components
using Nerfed.Runtime.Scene;
namespace Nerfed.Runtime.Components
{
[SceneComponent]
public readonly record struct Test();
}