Search Unity

  1. Welcome to the Unity Forums! Please take the time to read our Code of Conduct to familiarize yourself with the forum rules and how to post constructively.
  2. We have updated the language to the Editor Terms based on feedback from our employees and community. Learn more.
    Dismiss Notice

Question Hosting options for a webgl game built for a business

Discussion in 'Web' started by jeromegold, Aug 15, 2023.

  1. jeromegold

    jeromegold

    Joined:
    Apr 7, 2020
    Posts:
    47
    Hi. I'm an indie dev and built a small game for a local business who want to host the game, ideally on their own site - or alternatively at a separate url that they can host and have the game embedded at that url. But not really on a platform like itch. There are a few posts and articles on this question - but the process of hosting a webgl game made with unity on a ready made platform like wix, squarespace or firebase still doesn't seem straightforward.

    Just after some general advice pls.

    Thanks
     
  2. KamilCSPS

    KamilCSPS

    Joined:
    May 21, 2020
    Posts:
    390
    Just make sure the host supports compression (GZip, ideally Brotli) and there isn't much else to do other than adapt the front-end to fit the rest of the site.

    The rest is not really advise specific to your case, just best practices with WebGL in general (build size, optimisation, managing input, cache, etc.)
     
  3. jeromegold

    jeromegold

    Joined:
    Apr 7, 2020
    Posts:
    47
    Thanks.