stop flickering smh

This commit is contained in:
ThisIsALegitUsername 2023-03-03 03:35:54 +00:00
parent 0c5ad30a9b
commit dff1641519
5 changed files with 3161 additions and 3163 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -101,7 +101,7 @@
<body style="margin:0px;width:100vw;height:100vh;overflow:hidden;" id="game_frame">
<div id = "dividk">
<h1 id="clienttitle">Resent Client</h1>
<h2 id="clientversion">3.5</h2>
<h2 id="clientversion">3.6</h2>
<p id="progresstext">0%</p>
<div id="meter">
<span style="width: 0%" id="progress"></span>

View File

@ -1,6 +1,5 @@
package dev.resent.visual.ui.animation;
import dev.resent.module.base.ModManager;
import dev.resent.module.impl.misc.HUD;
public abstract class Animation {

View File

@ -39,6 +39,6 @@ public class SimpleAnimation {
}
public boolean isDone() {
return lastValue >= value-1;
return lastValue == value-1;
}
}