😎
[Godot] 作成したゲームをWindows, Webで実行可能にする方法
- Editor -> Manage Export Templates ... -> Export Template Managerが開く
- Download from: -> Official Github Releases Mirror に設定(これが一番速いらしい)
- Project -> Export ... -> Exportが開く
- Presets -> add... -> Web または Windows Desktop (not UWP)を追加
- Export Pathをデスクトップなどに設定して、右側の細かい設定はいじらずにExport Projectを押す
- Windowsの場合は.exeをクリックすればすぐにプレイできる(同じディレクトリにエクスポートした時に一緒に作成されたPCKファイルが必要)
- 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版をアップロードする方法
- itch.ioのアカウントを作成する
- Dashboard -> create new projectでKind of Project -> HTMLに設定し, SharedArrayBuffer support にチェックをつけたら完了です
- Save and Vewpage をクリックするとWeb上でプレイできます
Discussion