示例#1
0
    //Update all of our queues!
    void Update()
    {
        UpdateDeletion(Time.deltaTime);
        UpdateCreation(Time.deltaTime);
        UpdateBackgrounds();

        if (backgroundChanged)
        {
            blockMap.RecalculateBackground();

            backgroundChanged = false;
        }
    }