示例#1
0
    private IEnumerator Planes()
    {
        while (true)
        {
            yield return(new WaitForSeconds(planeRate));

            planeRate *= 0.925f;
            _uiManager.AddPlaneListItem(_planeManager.AddPlane());
        }
    }