chore: sync project assets and ignore generated caches

This commit is contained in:
2026-04-03 13:25:14 +08:00
parent a05d0b80a2
commit da157de59a
38 changed files with 340 additions and 169 deletions

View File

@@ -0,0 +1,48 @@
using XCEngine;
namespace ProjectScripts
{
public sealed class TickLogProbe : MonoBehaviour
{
public int FixedUpdateCount;
public int UpdateCount;
public int LateUpdateCount;
public void Awake()
{
Debug.Log("[Project TickLogProbe] Awake");
}
public void Start()
{
Debug.Log("[Project TickLogProbe] Start");
}
public void FixedUpdate()
{
FixedUpdateCount += 1;
if (FixedUpdateCount <= 3)
{
Debug.Log("[Project TickLogProbe] FixedUpdate " + FixedUpdateCount);
}
}
public void Update()
{
UpdateCount += 1;
if (UpdateCount <= 3)
{
Debug.Log("[Project TickLogProbe] Update " + UpdateCount);
}
}
public void LateUpdate()
{
LateUpdateCount += 1;
if (LateUpdateCount <= 3)
{
Debug.Log("[Project TickLogProbe] LateUpdate " + LateUpdateCount);
}
}
}
}