Changed project name

This commit is contained in:
2025-12-04 16:55:26 +09:00
parent 3bbf485fce
commit 93bc8e55a3
54 changed files with 1819 additions and 613 deletions

View File

@@ -1,6 +1,7 @@
using Ghost.Entities.Components;
using Ghost.Entities.Query;
using Ghost.Entities.Systems;
#if false
using Ghost.SparseEntities.Components;
using Ghost.SparseEntities.Query;
using Ghost.SparseEntities.Systems;
using Ghost.Test.Core;
using System.Numerics;
@@ -128,7 +129,7 @@ public class UserScript : ScriptComponent
EntityManager.GetComponent<Transform>(Owner).ValueRW.position += new Vector3(10, 10, 10);
}
override public void OnDisable()
public override void OnDisable()
{
Console.WriteLine("UserScript disabled for entity: " + Owner);
}
@@ -188,4 +189,5 @@ public class EventManager : ScriptComponent
{
Console.WriteLine("EventManager destroyed for entity: " + Owner);
}
}
}
#endif