TimeOfDayManager.UpdateInstant C# (CSharp) 메소드

UpdateInstant() 개인적인 메소드

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