Skip to content

Commit

Permalink
fix jitter
Browse files Browse the repository at this point in the history
  • Loading branch information
RandomityGuy committed Jun 13, 2024
1 parent a7d26e3 commit 016f468
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Marble.hx
Original file line number Diff line number Diff line change
Expand Up @@ -1959,7 +1959,7 @@ class Marble extends GameObject {
function calculateNetSmooth() {
if (this.netCorrected) {
this.netCorrected = false;
this.netSmoothOffset.load(this.lastRenderPos.sub(this.oldPos).sub(this.velocity.multiply(0.032)));
this.netSmoothOffset.load(this.lastRenderPos.sub(this.oldPos));
// this.oldPos.load(this.posStore);
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/MarbleGame.hx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class MarbleGame {
static var canvas:Canvas;
static var instance:MarbleGame;

static var currentVersion = "1.1.1";
static var currentVersion = "1.1.2";

var world:MarbleWorld;
var previewWorld:PreviewWorld;
Expand Down

0 comments on commit 016f468

Please sign in to comment.