TimeOfDayManager.UpdateProps C# (CSharp) Method

UpdateProps() private method

private UpdateProps ( ) : void
return 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);
        }
    }