Update #15 - Fixed vanilla scoreboard glitch

This commit is contained in:
LAX1DUDE 2023-01-20 23:37:09 -08:00
parent 1f8473deeb
commit 3e84bfbc1a
4 changed files with 15 additions and 6 deletions

View File

@ -1 +1 @@
u14
u15

View File

@ -77,7 +77,16 @@
~ for (Score score1 : (List<Score>) arraylist1) {
> INSERT 40 : 42 @ 40
> CHANGE 7 : 9 @ 7 : 9
~ this.getFontRenderer().drawString(s1, k1, k, 0xFFFFFFFF);
~ this.getFontRenderer().drawString(s2, l - this.getFontRenderer().getStringWidth(s2), k, 0xFFFFFFFF);
> CHANGE 5 : 6 @ 5 : 6
~ k - this.getFontRenderer().FONT_HEIGHT, 0xFFFFFFFF);
> INSERT 25 : 27 @ 25
+ GlStateManager.enableBlend();
+ GlStateManager.tryBlendFuncSeparate(770, 771, 1, 0);

View File

@ -8,7 +8,7 @@ public class EaglercraftVersion {
/// Customize these to fit your fork:
public static final String projectForkName = "EaglercraftX";
public static final String projectForkVersion = "u14";
public static final String projectForkVersion = "u15";
public static final String projectForkVendor = "lax1dude";
public static final String projectForkURL = "https://gitlab.com/lax1dude/eaglercraftx-1.8";
@ -23,7 +23,7 @@ public class EaglercraftVersion {
public static final String projectOriginName = "EaglercraftX";
public static final String projectOriginAuthor = "lax1dude";
public static final String projectOriginRevision = "1.8";
public static final String projectOriginVersion = "u14";
public static final String projectOriginVersion = "u15";
public static final String projectOriginURL = "https://gitlab.com/lax1dude/eaglercraftx-1.8";

View File

@ -72,7 +72,7 @@ void main() {
u_textureMat4f01[2].xyw,
u_textureMat4f01[3].xyw
);
vec3 v_textureTmp3f = texMat4x3 * vec4(a_texture2f, 1.0, 1.0);
vec3 v_textureTmp3f = texMat4x3 * vec4(a_texture2f, 0.0, 1.0);
v_texture2f = v_textureTmp3f.xy / v_textureTmp3f.z;
#endif
@ -95,7 +95,7 @@ void main() {
u_textureMat4f02[2].xyw,
u_textureMat4f02[3].xyw
);
vec3 v_lightmapTmp3f = texMat4x3 * vec4(a_lightmap2f, 1.0, 1.0);
vec3 v_lightmapTmp3f = texMat4x3 * vec4(a_lightmap2f, 0.0, 1.0);
v_lightmap2f = v_lightmapTmp3f.xy / v_lightmapTmp3f.z;
#endif