rust_pixel 2.4.0

2d pixel-art game engine & rapid prototype tools support terminal, wgpu and web...
Documentation
<!DOCTYPE html>
<html>

<head>
  <meta charset="utf-8">
  <title>RustPixelGame</title>
  <style>
    body {
      margin: 0;
      padding: 0;
      background: #000;
      overflow: hidden;
    }
    #canvas {
      position: absolute;
      top: 0;
      left: 0;
      /* Crisp pixel rendering for retro style */
      image-rendering: pixelated;
      image-rendering: crisp-edges;
    }
  </style>
</head>

<body>
  <!-- Canvas size will be set dynamically by JavaScript after WGPU init -->
  <canvas id="canvas"></canvas>
  <script src="./index.js" type="module"></script>
</body>

</html>