TimeOfDayManager.UpdateProps C# (CSharp) Méthode

UpdateProps() private méthode

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