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

◆ GetFloorTileType()

static int Terraria.Player.GetFloorTileType ( int x,
int y )
inlinestatic

Definition at line 22121 of file Player.cs.

22122 {
22123 Tile? floorTile = GetFloorTile(x, y);
22124 return ((int?)(floorTile.HasValue ? new ushort?(floorTile.GetValueOrDefault().type) : null)) ?? (-1);
22125 }
static ? Tile GetFloorTile(int x, int y)
Definition Player.cs:22091

References Terraria.Player.GetFloorTile().

+ Here is the call graph for this function: