TimeOfDayManager.UpdateSuns C# (CSharp) Méthode

UpdateSuns() private méthode

private UpdateSuns ( ) : void
Résultat void
    private void UpdateSuns()
    {
        //if (debug) Debug.Log("Update Suns: " + time + ":" + propsLastUpdate);
        foreach (ObjectProperties prop in props) {
            if (prop != null && prop.isActiveAndEnabled) prop.ApplyProperties(time, this);
            if (prop != null) prop.ApplyProperties(time, this);
        }
    }