EzGame.Perspective.Planar.Object.Applied C# (CSharp) Метод

Applied() публичный Метод

Get the count of how many filters of the provided filter type(s) (combined) there are
public Applied ( ) : int
Результат int
        public int Applied(params Type[] Filters)
        {
            var Count = 0;
            if (this.Filters != null)
            {
                for (var i = 0; i < this.Filters.Count; i++) if (Filters.Contains(this.Filters[i].GetType())) Count++;
            }
            return Count;
        }