Skip to content

Commit ca6600f

Browse files
committed
I hate git/intellij not immediately recognizing the formatting changes
1 parent d98d9c3 commit ca6600f

4 files changed

Lines changed: 6 additions & 5 deletions

File tree

common/src/main/java/org/vivecraft/client/gui/pip/state/GuiFBTPlayerState.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ public record GuiFBTPlayerState(boolean rightReady, boolean leftReady, Vector3fc
1010
ScreenRectangle bounds) implements PictureInPictureRenderState
1111
{
1212
public GuiFBTPlayerState(
13-
boolean rightReady, boolean leftReady, Vector3fc right, Vector3fc left, float yRot, int x0, int y0, int x1, int y1)
13+
boolean rightReady, boolean leftReady, Vector3fc right, Vector3fc left, float yRot, int x0, int y0, int x1,
14+
int y1)
1415
{
15-
this(rightReady, leftReady, right, left, yRot, x0, y0, x1, y1, 1, new ScreenRectangle(x0, y0, x1 - x0, y1 - y0));
16+
this(rightReady, leftReady, right, left, yRot, x0, y0, x1, y1, 1,
17+
new ScreenRectangle(x0, y0, x1 - x0, y1 - y0));
1618
}
1719

1820
@Override

common/src/main/java/org/vivecraft/client/gui/screens/FBTCalibrationScreen.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package org.vivecraft.client.gui.screens;
22

3-
import com.mojang.math.Axis;
43
import net.minecraft.client.gui.GuiGraphics;
54
import net.minecraft.client.gui.components.Button;
65
import net.minecraft.client.gui.screens.Screen;

common/src/main/resources/assets/vivecraft/post_effect/vrtransparency.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
{
106106
"name": "ColorModulate",
107107
"type": "vec4",
108-
"value": [ 1.0, 1.0, 1.0, 1.0 ]
108+
"value": [1.0, 1.0, 1.0, 1.0]
109109
}
110110
]
111111
},

common/src/main/resources/assets/vivecraft/shaders/core/mixedreality_vr.fsh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ layout(std140) uniform MixedRealityUbo {
99
mat4 projectionMatrix;
1010
mat4 viewMatrix;
1111

12-
// these are vec4s beacuse of ubo shenanigans
12+
// these are vec4s beacuse of ubo shenanigans
1313
vec4 keyColor;
1414
vec4 hmdViewPosition;
1515
vec4 hmdPlaneNormal;

0 commit comments

Comments
 (0)