bevy_pixels 0.16.0

Bevy plugin that uses Pixels (a tiny pixel buffer) for rendering
Documentation
<!doctype html>
<html lang="en">
    <head>
        <meta charset="utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <title>bevy_pixels example</title>
        <style>
            html,
            body {
                width: 100%;
                height: 100%;
                margin: 0;
                overflow: hidden;
                background: #000;
            }

            canvas {
                display: block;
            }
        </style>
    </head>
    <body>
        <script type="module">
            import init from "./wasm/example.js";
            init();
        </script>
    </body>
</html>