「Unity/WebGL/画面縦横幅拡大」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→右に表示されてしまうのを中央表示に変更する方法) |
|||
行9: | 行9: | ||
==右に表示されてしまうのを中央表示に変更する方法== | ==右に表示されてしまうのを中央表示に変更する方法== | ||
TemplateData/style.css | TemplateData/style.css | ||
+ | <pre> | ||
body { | body { | ||
text-align: center; | text-align: center; | ||
} | } | ||
+ | </pre> |
2022年12月1日 (木) 15:10時点における版
WebGLで出力されてたcanvasを100%にする方法
- http://corevale.com/unity/1636 にある以下の.webgl-content * {}スタイルシートで、TemplateData/style.cssを更新
- index.htmlに記載されてる縦幅横幅を100%に変更。
- 出力されたhtmlに以下記載されてることを確認
<link rel="stylesheet" href="TemplateData/style.css">
参考:http://corevale.com/unity/1636
右に表示されてしまうのを中央表示に変更する方法
TemplateData/style.css
body { text-align: center; }