TimeOfDayManager.UpdateInstant C# (CSharp) Méthode

UpdateInstant() private méthode

private UpdateInstant ( ) : void
Résultat 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);
        }
    }