Terraria.TileObjectData.CheckLavaDeath C# (CSharp) 메소드

CheckLavaDeath() 공개 정적인 메소드

public static CheckLavaDeath ( Tile checkTile ) : bool
checkTile Tile
리턴 bool
        public static bool CheckLavaDeath(Tile checkTile)
        {
            if (!checkTile.active())
                return false;
            TileObjectData tileData = TileObjectData.GetTileData(checkTile);
            if (tileData == null)
                return Main.tileLavaDeath[(int)checkTile.type];
            return tileData.LavaDeath;
        }

Same methods

TileObjectData::CheckLavaDeath ( int type, int style ) : bool