List of usage examples for net.minecraftforge.client IRenderHandler subclass-usage
From source file appeng.client.render.SpatialSkyRender.java
public class SpatialSkyRender extends IRenderHandler { private static final SpatialSkyRender INSTANCE = new SpatialSkyRender(); private final Random random = new Random(); private final int dspList;
From source file cn.lambdacraft.terrain.client.renderer.RenderXenSky.java
/** * @author mkpoli * */ public class RenderXenSky extends IRenderHandler { private Minecraft mc;
From source file com.kegare.caveworld.client.renderer.EmptyRenderer.java
@SideOnly(Side.CLIENT) public class EmptyRenderer extends IRenderHandler { public static final EmptyRenderer instance = new EmptyRenderer(); @Override public void render(float ticks, WorldClient world, Minecraft mc) {
From source file com.kegare.frozenland.client.renderer.EmptyRenderer.java
@SideOnly(Side.CLIENT) public class EmptyRenderer extends IRenderHandler { public static final EmptyRenderer instance = new EmptyRenderer(); @Override public void render(float partialTicks, WorldClient world, Minecraft mc) {
From source file com.kegare.frozenland.client.renderer.FrozenlandSkyRenderer.java
@SideOnly(Side.CLIENT) public class FrozenlandSkyRenderer extends IRenderHandler { private int starGLCallList; public FrozenlandSkyRenderer() { this.starGLCallList = GLAllocation.generateDisplayLists(3);
From source file com.kegare.frozenland.client.renderer.FrozenlandWheatherRenderer.java
@SideOnly(Side.CLIENT) public class FrozenlandWheatherRenderer extends IRenderHandler { private static final ResourceLocation locationSnowPng = new ResourceLocation("textures/environment/snow.png"); private final Random random = new Random();
From source file com.minestellar.core.world.CloudRenderer.java
public class CloudRenderer extends IRenderHandler { @Override @SideOnly(Side.CLIENT) public void render(float partialTicks, WorldClient world, Minecraft mc) { } }
From source file com.minestellar.moon.world.SkyRendererMoon.java
public class SkyRendererMoon extends IRenderHandler { private static final ResourceLocation sunTexture = new ResourceLocation("textures/environment/sun.png"); private static final ResourceLocation earthTexture = new ResourceLocation(MinestellarMoon.ASSET_PREFIX, "textures/environment/earth.png"); public int starGLCallList = GLAllocation.generateDisplayLists(3);
From source file hellfirepvp.astralsorcery.client.sky.RenderAstralSkybox.java
/**
* This class is part of the Astral Sorcery Mod
* The complete source code for this mod can be found on github.
* Class: RenderAstralSkybox
* Created by HellFirePvP
* Date: 07.05.2016 / 00:50
From source file hellfirepvp.astralsorcery.client.sky.RenderDefaultSkybox.java
/**
* This class is part of the Astral Sorcery Mod
* The complete source code for this mod can be found on github.
* Class: RenderDefaultSkybox
* Created by HellFirePvP
* Date: 07.05.2016 / 00:44