「Unity/おすすめアセット/UniWebView」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→インストール) |
(→インストール) |
||
行14: | 行14: | ||
UniWebView | UniWebView | ||
</pre> | </pre> | ||
+ | 参考:https://docs.uniwebview.com/guide/installation.html#importing-package | ||
==Helloworld== | ==Helloworld== |
2023年8月17日 (木) 07:15時点における版
UniWebViewとは
- WebViewのプラグインで、ver5がでてる。
- 有料:$32.99
- UnityAssets:https://assetstore.unity.com/packages/tools/network/uniwebview-5-229334
- 公式ドキュメント:https://docs.uniwebview.com/
インストール
以下をimport
Editor/UniWebView Plugins/Android/UniWebView Plugins/iOS/libUniWebView Plugins/UniWebView UniWebView
参考:https://docs.uniwebview.com/guide/installation.html#importing-package
Helloworld
[SerializeField] UniWebView webView; void Start() { webView.Frame = new Rect(0, 0, Screen.width, Screen.height); webView.Load("ttps://google.co.jp"); webView.Show(); }
サイズ変更
マージン100としたとき
webView.Frame = new Rect(100, 100, Screen.width - 200, Screen.height - 200);