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

◆ WallLightAt() [2/2]

static bool Terraria.Main.WallLightAt ( int i,
int j,
bool showInvisibleWalls )
inlinestatic

Definition at line 51990 of file Main.cs.

51991 {
51992 Tile tile = Main.tile[i, j];
51993 if (!wallLight[tile.wall])
51994 {
51995 if (!showInvisibleWalls)
51996 {
51997 return tile.invisibleWall();
51998 }
51999 return false;
52000 }
52001 return true;
52002 }
static Tile[,] tile
Definition Main.cs:1675
static bool[] wallLight
Definition Main.cs:1445

References System.Text.RegularExpressions.i, Terraria.Main.tile, and Terraria.Main.wallLight.