quad-wasmnastics 0.3.0

Utilities that do the gymnastics required to make advanced Macroquad work on wasm.
Documentation
<html lang="en">

<head>
    <meta charset="utf-8">
    <title>The Clipboardinator (zowie)</title>
    <style>
        html,
        body,
        canvas {
            margin: 0px;
            padding: 0px;
            width: 100%;
            height: 100%;
            overflow: hidden;
            position: absolute;
            background: black;
            z-index: 0;
        }
 
         canvas {
            image-rendering: -moz-crisp-edges;
            image-rendering: -webkit-crisp-edges;
            image-rendering: pixelated;
            image-rendering: crisp-edges;
        }
               

        canvas:focus {
            outline: none;
        }

    </style>
</head>

<body>
    <canvas id="glcanvas" tabindex='1'></canvas>
    <!-- Minified and statically hosted version of https://github.com/not-fl3/macroquad/blob/master/js/mq_js_bundle.js -->
    <script src="https://not-fl3.github.io/miniquad-samples/mq_js_bundle.js"></script>
    <script src="wasmnastics.js"></script>
    <script>load("game.wasm");</script> <!-- Your compiled wasm file -->
</body>

</html>