「Unity/実機/WebGL」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→ページURL取得) |
(→ファイル圧縮を使う) |
||
(同じ利用者による、間の5版が非表示) | |||
行31: | 行31: | ||
参考:https://docs.unity3d.com/ja/2019.4/Manual/TextureStreaming.html | 参考:https://docs.unity3d.com/ja/2019.4/Manual/TextureStreaming.html | ||
+ | |||
+ | ==ファイル圧縮を使う== | ||
+ | PlayerSettingsのPublisingSettingsのCompression Formatを変更する | ||
+ | gzipにした場合の出力ファイル名の例 | ||
+ | <pre> | ||
+ | webgl_project.data.unityweb | ||
+ | webgl_project.framework.js.unityweb | ||
+ | webgl_project.loader.js | ||
+ | webgl_project.wasm.unityweb | ||
+ | </pre> | ||
+ | Disabledにした場合の出力ファイル名の例 | ||
+ | <pre> | ||
+ | webgl_project.data | ||
+ | webgl_project.framework.js | ||
+ | webgl_project.loader.js | ||
+ | webgl_project.wasm | ||
+ | </pre> |
2023年1月9日 (月) 07:31時点における最新版
目次
Web(WebGL)で動かす
- File/BuildSettingsを選択
- WebGLを選択
- OpenDownloadPageからプレイヤーをDL
- Edit/ProjectSetting/Playerを選択しPlayerSettingsを開く
- Inspector/HTML5マークタブ選択/OtherSetting
- widthとheightを入力する
- File/BuildSettingsからbuildボタンを押しプロジェクトを作成する
- あとはlocalhost:xxxxxで勝手に開く
WebGLでchromeで表示時"exception thrown: RangeError: Maximum call"が出る場合
chromeの閲覧履歴を削除すればよい。
DevelopmentConsoleを出す
ビルド時に、WebGLの設定で、DevelopmentBuildを選択する。
公開ページURL取得
Debug.Log(Application.absoluteURL); // ttp://localhost:1234/?test=1にアクセスすると、そのままの文字列が出る。 // ドメイン判定は、ざっくりやると、こんな感じ if (Application.absoluteURL.IndexOf("ttp://exmple.com") != -1) { // hit }
Texture Streaming設定
- Unityメインメニュー/Edit/ProjectSetting/Quality/Texture Streamingをonへ
- Assets下の画像(png)ファイルとかのinspectorを開く
- TextureTypeがSpriteでなく、Defaultとかで、あることを確認。
- AdvancedのStreamingMipmapsをonへ
参考:https://docs.unity3d.com/ja/2019.4/Manual/TextureStreaming.html
ファイル圧縮を使う
PlayerSettingsのPublisingSettingsのCompression Formatを変更する gzipにした場合の出力ファイル名の例
webgl_project.data.unityweb webgl_project.framework.js.unityweb webgl_project.loader.js webgl_project.wasm.unityweb
Disabledにした場合の出力ファイル名の例
webgl_project.data webgl_project.framework.js webgl_project.loader.js webgl_project.wasm