0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Unity WebGLをAzure SWA ルーティング設定してデプロイする

Last updated at Posted at 2025-03-20

概要

  • UnityのWebGLを静的Webアプリにhttps://SWAのURL/aapphttps://SWAのURL/bappというように、URLで分けてデプロイしたい場合の覚書
  • 例えば、モバイルとXRデバイスとかで分けたり

前提

  • Unity Project作成済み
  • SWA作成済み
  • Github ActionsでSWAへのデプロイ設定済み

ビルド

UnityでWebGLをaappとbappのディレクトリ配下にビルドします

/project-root
  ├── aapp/
  │     ├── index.html
  │     ├── Build/
  │     ├── TemplateData/
  ├── bapp/
  │     ├── index.html
  │     ├── Build/
  │     ├── TemplateData/

staticwebapp.config.jsonの追加

{
  "routes": [
    {
      "route": "/aapp",
      "serve": "/aapp/index.html"
    },
    {
      "route": "/aapp/Build/{file}",
      "serve": "/aapp/Build/{file}"
    },
    {
      "route": "/aapp/TemplateData/{file}",
      "serve": "/aapp/TemplateData/{file}"
    },
    {
      "route": "/bapp",
      "serve": "/bapp/index.html"
    },
    {
      "route": "/bapp/Build/{file}",
      "serve": "/bapp/Build/{file}"
    },
    {
      "route": "/bapp/TemplateData/{file}",
      "serve": "/bapp/TemplateData/{file}"
    }
  ],
  "mimeTypes": {
    ".wasm": "application/wasm",
    ".data": "application/octet-stream",
    ".js": "application/javascript",
    ".css": "text/css",
    ".ico": "image/x-icon"
  }
}

ルートにindex.htmlを追加する

  • ルートにindex.htmlがないと、デプロイ中にエラーが出るため、追加しておく

    • 中身は適当で..
  • 最終的にこのようになります

    /project-root
      ├── aapp/
      │     ├── index.html
      │     ├── Build/
      │     ├── TemplateData/
      ├── bapp/
      │     ├── index.html
      │     ├── Build/
      │     ├── TemplateData/
      ├── staticwebapp.config.json
      ├── index.html
    

index.html の修正

  • Unityでビルドしたindex.htmlを変更し、各環境で正しくリソースを読み込むようにする
    • 各パスにaappを追加。bappも同じことします
    <link rel="shortcut icon" href="aapp/TemplateData/favicon.ico">
    <link rel="stylesheet" href="aapp/TemplateData/style.css">

      var buildUrl = "aapp/Build";
      var loaderUrl = buildUrl + "/aapp.loader.js";
      var config = {
        dataUrl: buildUrl + "/aapp.data.br",
        frameworkUrl: buildUrl + "/aapp.framework.js.br",
        codeUrl: buildUrl + "/aapp.wasm.br",
        streamingAssetsUrl: "StreamingAssets",
        companyName: "DefaultCompany",
        productName: "TestSwaWebgl",
        productVersion: "0.1.0",
        showBanner: unityShowBanner,

デプロイ

  • あとはGithub ActionsでSWAにデプロイ
  • 完了後にhttps://SWAのURL/aapphttps://SWAのURL>/bappにアクセスするとそれぞれのUnityアプリが動作します
    • キャッシュで上手くいかない場合はシークレットウインドウとかで試してください

まとめ

  • ルーティング設定はSWAに限らずもっと一般的な機能だと思うので覚えてて損はないかと
  • SWA × Github Actionsデプロイ初見だったけど、SWA側でポチポチ設定できたので楽でした
  • https://にアクセスした場合はリダイレクトするなり考えんといかんなぁ..
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?