😎

[Godot] 作成したゲームをWindows, Webで実行可能にする方法

2023/10/02に公開

参考
Web
Windows

  1. Editor -> Manage Export Templates ... -> Export Template Managerが開く
  2. Download from: -> Official Github Releases Mirror に設定(これが一番速いらしい)
  3. Project -> Export ... -> Exportが開く
  4. Presets -> add... -> Web または Windows Desktop (not UWP)を追加
  5. Export Pathをデスクトップなどに設定して、右側の細かい設定はいじらずにExport Projectを押す
  6. Windowsの場合は.exeをクリックすればすぐにプレイできる(同じディレクトリにエクスポートした時に一緒に作成されたPCKファイルが必要)
  7. Webの方はエラー※が出るのでitch.ioにアプロードします

※以下のようなエラー。SharedArrayBufferの方はitch.ioの方で明示的に設定する必要があります。

Error
The following features required to run Godot projects on the Web are missing:
Cross Origin Isolation - Check web server configuration (send correct headers)
SharedArrayBuffer - Check web server configuration (send correct headers)

itch.ioにWeb版をアップロードする方法

  1. itch.ioのアカウントを作成する
  2. Dashboard -> create new projectでKind of Project -> HTMLに設定し, SharedArrayBuffer support にチェックをつけたら完了です
  3. Save and Vewpage をクリックするとWeb上でプレイできます

Discussion