OpenTween.TweenMain.IsEventNotifyAsEventType C# (CSharp) Method

IsEventNotifyAsEventType() private method

private IsEventNotifyAsEventType ( MyCommon type ) : bool
type MyCommon
return 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