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

◆ Slope()

virtual bool Terraria.ModLoader.GlobalTile.Slope ( int i,
int j,
int type )
inlinevirtual

Allows you to control how hammers slope any tile. Return true to allow the tile to slope normally. Returns true by default. Called on the local Client and Single Player.

Parameters
iThe x position in tile coordinates.
jThe y position in tile coordinates.
type
Returns

Definition at line 281 of file GlobalTile.cs.

282 {
283 return true;
284 }