Asgard.ScriptSystem.Javascript.Modules.EntityModule.AspectExclude C# (CSharp) Method

AspectExclude() public method

public AspectExclude ( string type1, string type2, string type3, string type4 ) : Artemis.Aspect
type1 string
type2 string
type3 string
type4 string
return Artemis.Aspect
        public Aspect AspectExclude(string type1, string type2, string type3, string type4)
        {
            var types = ConvertTypeList(type1, type2, type3, type4);
            return Aspect.Exclude(types);
        }