please fuck off

This commit is contained in:
ayunami2000 2022-01-17 23:49:32 -05:00
parent 7597c667d3
commit 8f571562da
18 changed files with 20528 additions and 377234 deletions

View File

@ -1,4 +1,3 @@
# ayuncraft
An [Eaglercraft](https://github.com/LAX1DUDE/eaglercraft) fork
An [Eaglercraft](https://github.com/LAX1DUDE/eaglercraft) fork

View File

@ -37,11 +37,11 @@ dependencies {
teavm {
compileScopes = null;
minifying = false;
minifying = true;
maxTopLevelNames = 10000;
properties = null;
debugInformationGenerated = false;
sourceMapsGenerated = false;
sourceMapsGenerated = true;
sourceFilesCopied = false;
incremental = false;
transformers = null;

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -14,7 +14,7 @@ scroll down for the detailed license statements
========================================
Copyright (c) 2020 Calder Young.
Copyright (c) 2022 Calder Young.
This work is licensed under a Creative Commons
Attribution-NonCommercial 4.0 International License

View File

@ -4,7 +4,7 @@ public class ConfigConstants {
public static boolean profanity = false;
public static final String version = "22m02a";
public static final String version = "22m03a";
public static final String mainMenuString = "eaglercraft " + version;
public static final String forkMe = "https://github.com/LAX1DUDE/eaglercraft";

View File

@ -329,7 +329,7 @@ public class Minecraft implements Runnable {
float f = ((float)(System.currentTimeMillis() - t1) / 333f);
EaglerAdapter.glClear(EaglerAdapter.GL_COLOR_BUFFER_BIT | EaglerAdapter.GL_DEPTH_BUFFER_BIT);
EaglerAdapter.glColor4f(1.0F, 1.0F, 1.0F, MathHelper.clamp_float(f*0.6f, 0.0F, 1.0F));
EaglerAdapter.glColor4f(1.0F, 1.0F, 1.0F, MathHelper.clamp_float(f, 0.0F, 1.0F));
this.renderEngine.bindTexture("%blur%/title/mojang.png");
EaglerAdapter.glPushMatrix();
float f1 = 0.875f + 0.025f * (float)Math.sqrt(f);
@ -370,7 +370,7 @@ public class Minecraft implements Runnable {
float f = ((float)(System.currentTimeMillis() - t1) / 340f);
EaglerAdapter.glClear(EaglerAdapter.GL_COLOR_BUFFER_BIT | EaglerAdapter.GL_DEPTH_BUFFER_BIT);
EaglerAdapter.glColor4f(1.0F, 1.0F, 1.0F, MathHelper.clamp_float((1.0f - f)*0.6f, 0.0F, 1.0F));
EaglerAdapter.glColor4f(1.0F, 1.0F, 1.0F, MathHelper.clamp_float((1.0f - f), 0.0F, 1.0F));
this.renderEngine.bindTexture("%blur%/title/mojang.png");
EaglerAdapter.glPushMatrix();
float f1 = 0.9f + 0.025f * f * f;

View File

@ -250,6 +250,7 @@ public class ItemRenderer {
RenderPlayer var26 = (RenderPlayer) var24;
if (var17 != null && var17.itemID == Item.map.itemID) {
EaglerAdapter.flipLightMatrix();
EaglerAdapter.glPushMatrix();
var7 = 0.8F;
var19 = var3.getSwingProgress(par1);
@ -318,6 +319,7 @@ public class ItemRenderer {
}
EaglerAdapter.glPopMatrix();
EaglerAdapter.flipLightMatrix();
} else if (var17 != null) {
EaglerAdapter.glPushMatrix();
var7 = 0.8F;

View File

@ -947,7 +947,7 @@ public class EaglerAdapterImpl2 {
private static native int commitContext(JSObject obj);
public static final void updateDisplay() {
//commitContext(webgl);
commitContext(webgl);
try {
Thread.sleep(1l);
} catch (InterruptedException e) {