Font measuring fix.
This commit is contained in:
parent
cff0319053
commit
88d1c0db87
|
@ -122,6 +122,7 @@ function MainLoop(timestamp)
|
||||||
KeyJump.pressed = false;
|
KeyJump.pressed = false;
|
||||||
lastTimestamp = undefined;
|
lastTimestamp = undefined;
|
||||||
lastRendered = undefined;
|
lastRendered = undefined;
|
||||||
|
textBoxGameFinished.updateLines(window.innerWidth - 40, context);
|
||||||
textBoxGameFinished.animate();
|
textBoxGameFinished.animate();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -209,7 +210,6 @@ window.addEventListener(
|
||||||
textBoxGameFinished.hasBorder = true;
|
textBoxGameFinished.hasBorder = true;
|
||||||
textBoxGameFinished.colorText = 'yellow';
|
textBoxGameFinished.colorText = 'yellow';
|
||||||
textBoxGameFinished.colorBorder = 'black';
|
textBoxGameFinished.colorBorder = 'black';
|
||||||
textBoxGameFinished.updateLines(window.innerWidth - 40, context);
|
|
||||||
|
|
||||||
architecture = RetroArchitecture.createFromData(level);
|
architecture = RetroArchitecture.createFromData(level);
|
||||||
camera.borderRight = architecture.columns * architecture.tileWidth;
|
camera.borderRight = architecture.columns * architecture.tileWidth;
|
||||||
|
|
Loading…
Reference in New Issue