Exemplo n.º 1
0
        /** Builds a FGameplayTagQueryExpression from this query. */
        public void GetQueryExpr(CGameplayTagQueryExpression OutExpr)
        {
            //根据传入的steam token创建表达式树
            FQueryEvaluator QE = new FQueryEvaluator(this);

            QE.Read(OutExpr);
        }
Exemplo n.º 2
0
        /** Tags 是否有匹配的标签. */
        public bool Matches(CGameplayTagContainer Tags)
        {
            FQueryEvaluator eval = new FQueryEvaluator(this);

            return(eval.Eval(Tags));
        }