Removed some LINQ

This commit is contained in:
2026-01-24 21:47:18 +00:00
parent 434b902814
commit e905c1f7c5
2 changed files with 43 additions and 51 deletions

View File

@@ -14,20 +14,6 @@ using UnityEngine;
private void OnTestChange() => LogTestValue();
private void Update()
{
using (CodeProfiler.Start("Test Snippet"))
{
SpinWait sw = new();
int count = Random.Range(1, 50);
for (int i = 0; i < count; i++)
{
sw.SpinOnce();
}
}
}
[InspectorCallable(nameof(LogSpawnableType))]
public void LogSpawnableType()
{