Attempt to improve time

This commit is contained in:
2026-01-01 21:49:12 +01:00
parent 69a0a752be
commit 26625f6b6f
12 changed files with 2302 additions and 1913 deletions

View File

@@ -150,7 +150,7 @@ namespace Marro.PacManUdon
// Debug.Log($"{gameObject} reset with state: {state}, target: {target}, offGrid: {offGrid}");
}
void FixedUpdate()
public override void FixedUpdate()
{
if (ghostType == PacManGhostType.Blinky)
{
@@ -779,11 +779,6 @@ namespace Marro.PacManUdon
UpdateAnimator();
}
public override void AppendSyncedData(byte[][] data, ref int offset, NetworkEventType eventType, uint eventTime)
{
base.AppendSyncedData(data, ref offset, eventType, eventTime);
}
void OnTriggerEnter(Collider other)
{
if (Networking.IsOwner(gameObject) && other.gameObject.GetComponent<PacManGhostCollider>())