LogoPixi’VN

itch.io

This page explains how to distribute your Pixi’VN game on itch.io, including how to make it playable in the browser.

You can distribute your game on itch.io. It is a platform that allows you to upload your game and distribute it to the public. It is a great platform to distribute your game and get feedback from the community.

Game playable in browser

On itch.io you can enable the "This file will be played in the browser" flag for an uploaded file to make it playable in the browser.

Instead, you need to host the game on a server and then upload to itch.io a single html file containing an iframe that points to the URL where the game is hosted.

For example, after hosting the game on a server, you can create a index.html file with the following content:

index.html
<!doctype html>
<html lang="en" style="height: 100%; width: 100%;">
  <head></head>
  <body
    style="height: 100%; width: 100%; display: flex; overflow: hidden; margin: 0; background-color: #242424;"
  >
    <div id="root"
      style="height: 100%; width: 100%;"
    >
      <iframe
        src="https://pixi-vn-visual-novel-example.pages.dev/"
        style="height: 100%; width: 100%; border: none;"
        allowfullscreen
      >
      </iframe>
    </div>
  </body>
</html>

Then you can upload the index.html file to itch.io.

On this page