4
2

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】Webページに埋め込む方法【2020.2】

Last updated at Posted at 2022-03-04

webサイトにWebGLで書き出したゲームを埋め込む方法備忘録
例:https://ponkichi.info リンク切れごめんなさい

Unityバージョン 2020.2.7f1

手順
1.設定してBuild
2.フォルダに入れる
3.HTMLに埋め込む
4.サイズ調整

1. Build

Edit > ProjectSettings > Player
から、Publishing Settings > Compression Formatを Disabledに変更

デフォルトのGzipでもできる場合があるみたいですが、私はこれにしないとゲームがロードされなかったです。
スクリーンショット 2022-03-05 1.51.30.png

2. フォルダに入れる

スクリーンショット 2022-03-05 2.00.17.png

3. WebサイトのHTMLに埋め込む

<iframe width="960" height="600" src="ponmoguraBuild/index.html"
 frameborder="0" allowfullscreen>
</iframe>

unityで書き出されたindex.htmlではなくて、埋め込みたい元のサイトのhtmlに記載する
大きさは16:10にしてます
srcの部分にはビルドしたファイルの名前を書く
この状態で一度確認するとゲームが埋め込まれているはずです。

4. index.htmlを書き換える

unityで書き出されたindex.htmlを少し編集する
3までの手順でゲームのサイズやUIの位置がズレることがあるので修正します
赤枠部分がゲーム画面のサイズです

スクリーンショット 2022-03-05 1.43.46.png

以下のように書き換える

style="width: 100%; height: calc(100vw * 0.56);

calcについてはググってみてください。

終わり

4
2
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
4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?