Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ this[string name]

EffectAnnotation Microsoft.Xna.Framework.Graphics.EffectAnnotationCollection.this[string name]
get

Definition at line 25 of file EffectAnnotationCollection.cs.

26 {
27 get
28 {
30 if (enumerator.MoveNext())
31 {
32 do
33 {
34 EffectAnnotation current = enumerator.Current;
35 if (current._name == name)
36 {
37 return current;
38 }
39 }
40 while (enumerator.MoveNext());
41 }
42 return null;
43 }
44 }