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

◆ this[string name]

EffectParameter Microsoft.Xna.Framework.Graphics.EffectParameterCollection.this[string name]
get

Definition at line 28 of file EffectParameterCollection.cs.

29 {
30 get
31 {
33 if (enumerator.MoveNext())
34 {
35 do
36 {
37 EffectParameter current = enumerator.Current;
38 if (current._name == name)
39 {
40 return current;
41 }
42 }
43 while (enumerator.MoveNext());
44 }
45 return null;
46 }
47 }