This commit is contained in:
modmuss50 2019-11-13 17:41:46 +00:00
parent f947d671a1
commit 6c2678816a
5 changed files with 9 additions and 9 deletions
build.gradle
fabric-renderer-indigo
build.gradle
src/main/java/net/fabricmc/fabric/impl/client/indigo/renderer/render

View file

@ -12,8 +12,8 @@ plugins {
def ENV = System.getenv()
class Globals {
static def baseVersion = "0.4.11"
static def mcVersion = "19w45b"
static def baseVersion = "0.4.12"
static def mcVersion = "19w46a"
static def yarnVersion = "+build.1"
}

View file

@ -1,5 +1,5 @@
archivesBaseName = "fabric-renderer-indigo"
version = getSubprojectVersion(project, "0.2.12")
version = getSubprojectVersion(project, "0.2.13")
dependencies {
compile project(path: ':fabric-api-base', configuration: 'dev')

View file

@ -80,8 +80,8 @@ public class BlockRenderContext extends AbstractRenderContext implements RenderC
this.vanillaRenderer = vanillaRenderer;
this.bufferBuilder = buffer;
this.matrixStack = matrixStack;
this.matrix = matrixStack.method_23760().method_23761();
this.normalMatrix = matrixStack.method_23760().method_23762();
this.matrix = matrixStack.peek().getModel();
this.normalMatrix = matrixStack.peek().getNormal();
this.seed = seed;
this.overlay = overlay;

View file

@ -90,8 +90,8 @@ public class ItemRenderContext extends AbstractRenderContext implements RenderCo
this.itemStack = stack;
this.bufferBuilder = buffer;
this.matrixStack = matrixStack;
this.matrix = matrixStack.method_23760().method_23761();
this.normalMatrix = matrixStack.method_23760().method_23762();
this.matrix = matrixStack.peek().getModel();
this.normalMatrix = matrixStack.peek().getNormal();
this.overlay = overlay;
this.vanillaHandler = vanillaHandler;

View file

@ -96,8 +96,8 @@ public class TerrainRenderContext extends AbstractRenderContext implements Rende
/** Called from chunk renderer hook. */
public boolean tesselateBlock(BlockState blockState, BlockPos blockPos, final BakedModel model, MatrixStack matrixStack) {
this.matrix = matrixStack.method_23760().method_23761();
this.normalMatrix = matrixStack.method_23760().method_23762();
this.matrix = matrixStack.peek().getModel();
this.normalMatrix = matrixStack.peek().getNormal();
try {
aoCalc.clear();