TimeOfDayManager.UpdateInstant C# (CSharp) Метод

UpdateInstant() приватный Метод

private UpdateInstant ( ) : void
Результат void
    private void UpdateInstant()
    {
        //if (debug) Debug.Log("Update Instant: " + time);
        foreach (ObjectProperties prop in instantUpdate) {
            //if (prop != null && prop.isActiveAndEnabled) prop.ApplyProperties(time, this);
            if (prop != null) prop.ApplyProperties(time, this);
        }
    }