blob: c4df0595633f2d3e6c1ae90fcb61ba7761206257 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package common.tileentities;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.AxisAlignedBB;
public class TE_SpaceElevatorTether extends TileEntity {
@SideOnly(Side.CLIENT)
@Override
public double getMaxRenderDistanceSquared() {
// 4k is standard, 65k is what the vanilla beacon uses
return 65536.0D;
}
@Override
@SideOnly(Side.CLIENT)
public AxisAlignedBB getRenderBoundingBox() {
// Make it so the beam is still rendered even when the source block is out of sight
return INFINITE_EXTENT_AABB;
}
}
|