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

◆ IsTileBiomeSightable() [1/3]

static bool Terraria.Main.IsTileBiomeSightable ( int tileX,
int tileY,
ref Color sightColor )
inlinestatic

Checks if a tile at the given coordinates counts towards tile coloring from the Biome Sight buff.

Definition at line 83552 of file Main.cs.

83553 {
83554 Tile tile = Main.tile[tileX, tileY];
83555 return IsTileBiomeSightable(tileX, tileY, tile.type, tile.frameX, tile.frameY, ref sightColor);
83556 }
static Tilemap tile
Definition Main.cs:1820
static bool IsTileBiomeSightable(int tileX, int tileY, Tile t, ref Color sightColor)
Definition Main.cs:21242

References Terraria.Main.IsTileBiomeSightable(), and Terraria.Main.tile.

+ Here is the call graph for this function: