TimeOfDayManager.UpdateSuns C# (CSharp) 메소드

UpdateSuns() 개인적인 메소드

private UpdateSuns ( ) : void
리턴 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);
        }
    }