2026-04-22 09:52:55 +08:00
|
|
|
using UnityEngine;
|
|
|
|
|
|
2026-04-22 11:13:16 +08:00
|
|
|
namespace LoveLegend
|
2026-04-22 09:52:55 +08:00
|
|
|
{
|
|
|
|
|
public static class YieldConst
|
|
|
|
|
{
|
|
|
|
|
public const float Time10ms = 0.01f;
|
|
|
|
|
public const float Time100ms = 0.1f;
|
|
|
|
|
|
|
|
|
|
public static WaitForEndOfFrame WaitForEndOfFrame = new WaitForEndOfFrame();
|
|
|
|
|
public static WaitForSeconds WaitFor100ms = new WaitForSeconds(Time100ms);
|
|
|
|
|
}
|
|
|
|
|
}
|