Skip to content

Commit

Permalink
Merge remote-tracking branch 'remotes/origin/Multiloader-1.19' into M…
Browse files Browse the repository at this point in the history
…ultiloader-1.18
  • Loading branch information
fayer3 committed Jul 9, 2024
2 parents 7c2952b + a2b2927 commit 04c558a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,8 @@ public static void drawScreen(float f, Screen screen, PoseStack poseStack) {

Matrix4f guiProjection = Matrix4f.orthographic(
0.0F, (float) (mc.getWindow().getWidth() / mc.getWindow().getGuiScale()),
(float) (mc.getWindow().getHeight() / mc.getWindow().getGuiScale()), 0.0F,
1000.0F, 3000.0F);
0.0F, (float) (mc.getWindow().getHeight() / mc.getWindow().getGuiScale()),
1000.0F, 3000.0F);
RenderSystem.setProjectionMatrix(guiProjection);

RenderSystem.blendFuncSeparate(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,7 @@ public abstract class MinecraftVRMixin implements MinecraftExtension {
RenderPassManager.setGUIRenderPass();
RenderSystem.depthMask(true);
RenderSystem.colorMask(true, true, true, true);
RenderSystem.defaultBlendFunc();
this.mainRenderTarget.clear(Minecraft.ON_OSX);
this.mainRenderTarget.bindWrite(true);

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ minecraft_version=1.18.2
enabled_platforms=fabric,forge

archives_base_name=vivecraft
mod_version=1.1.10
mod_version=1.1.11
maven_group=org.vivecraft

architectury_version=4.11.93
Expand Down

0 comments on commit 04c558a

Please sign in to comment.