WallManager.Update C# (CSharp) Method

Update() protected method

protected Update ( ) : void
return void
    protected void Update()
    {
        if (autoGrowRoom)
        {
            growTimer -= Time.deltaTime;

            if (growTimer < 0)
            {
                transformRoom += growStep;
                growTimer = growTime;
                ResizeRoom();
            }
        }
#if UNITY_EDITOR
    // ResizeRoom();
#endif

    }