OpenTween.TweenMain.IsEventNotifyAsEventType C# (CSharp) 메소드

IsEventNotifyAsEventType() 개인적인 메소드

private IsEventNotifyAsEventType ( MyCommon type ) : bool
type MyCommon
리턴 bool
        private bool IsEventNotifyAsEventType(MyCommon.EVENTTYPE type)
        {
            if (type == MyCommon.EVENTTYPE.None)
                return true;

            if (!this._cfgCommon.EventNotifyEnabled)
                return false;

            return this._cfgCommon.EventNotifyFlag.HasFlag(type);
        }
TweenMain