Class EffectPassCollection
Represents a collection of EffectPass objects.
public class EffectPassCollection : IEnumerable<EffectPass>, IEnumerable
- Inheritance
-
EffectPassCollection
- Implements
- Inherited Members
Properties
Count
Gets the number of elements contained in the collection.
public int Count { get; }
Property Value
this[int]
Retrieves the EffectPass at the specified index in the collection.
public EffectPass this[int index] { get; }
Parameters
index
int
Property Value
this[string]
Retrieves a EffectPass from the collection, given the name of the pass.
public EffectPass this[string name] { get; }
Parameters
name
stringThe name of the pass to retrieve.
Property Value
Methods
GetEnumerator()
Returns a EffectPassCollection.Enumerator that can iterate through a collection.
public EffectPassCollection.Enumerator GetEnumerator()