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

◆ this[int x, int y]

Vector3 Terraria.Graphics.Light.LightMap.this[int x, int y]
getset

Definition at line 33 of file LightMap.cs.

34 {
35 get
36 {
37 return _colors[IndexOf(x, y)];
38 }
39 set
40 {
41 _colors[IndexOf(x, y)] = value;
42 }
43 }