~starkingdoms/starkingdoms

b85786fdda04661f3ca99f180cf6d5339935788b — core 2 years ago b344f9a
fix textures being extremely blurry (thank you terra!)
1 files changed, 4 insertions(+), 1 deletions(-)

M web/play.html
M web/play.html => web/play.html +4 -1
@@ 20,7 20,7 @@
    </div>
</div>

<canvas style="width: 100%; height: 100%; background-color: purple;" id="canvas"></canvas>
<canvas style="background-color: purple;" id="canvas"></canvas>

<script type="module">
    // If you're getting build errors here | you need to run `just build_client_bundle` first, to compile client code


@@ 103,6 103,9 @@
                }
                let delta = time - start;

                document.getElementById("canvas").width = window.innerWidth;
                document.getElementById("canvas").height = window.innerHeight;

                try {
                    render_frame(delta);
                } catch (e) {