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

◆ coatingColors()

static List< Color > Terraria.WorldGen.coatingColors ( Tile tile,
bool block )
inlinestatic

Definition at line 36816 of file WorldGen.cs.

36817 {
36818 //IL_0037: Unknown result type (might be due to invalid IL or missing references)
36819 //IL_005f: Unknown result type (might be due to invalid IL or missing references)
36820 _coatingColors.Clear();
36821 if (tile == null)
36822 {
36823 return _coatingColors;
36824 }
36825 if ((block && tile.fullbrightBlock()) || (!block && tile.fullbrightWall()))
36826 {
36828 }
36829 if ((block && tile.invisibleBlock()) || (!block && tile.invisibleWall()))
36830 {
36832 }
36833 return _coatingColors;
36834 }
static Color coatingColor(int coating)
static List< Color > _coatingColors
Definition WorldGen.cs:1412

References Terraria.Tile.fullbrightBlock(), Terraria.Tile.fullbrightWall(), Terraria.Tile.invisibleBlock(), and Terraria.Tile.invisibleWall().

+ Here is the call graph for this function: