Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/baba-s/UniWebViewMarginsFromRectTransform
【Unity】unity-webview のマージンを RectTranform から設定できる機能
https://github.com/baba-s/UniWebViewMarginsFromRectTransform
kogane-unity-lib unity unity3d
Last synced: about 2 months ago
JSON representation
【Unity】unity-webview のマージンを RectTranform から設定できる機能
- Host: GitHub
- URL: https://github.com/baba-s/UniWebViewMarginsFromRectTransform
- Owner: baba-s
- License: mit
- Created: 2019-04-11T03:44:14.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-12T13:45:15.000Z (over 4 years ago)
- Last Synced: 2024-05-13T20:58:47.840Z (8 months ago)
- Topics: kogane-unity-lib, unity, unity3d
- Language: C#
- Homepage:
- Size: 18.6 KB
- Stars: 19
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-unity-open-source-on-github - uni-web-view-margins-from-rect-transform - Web view margin (Script Utility)
README
# Uni Web View Margins From RectTransform
[unity-webview](https://github.com/gree/unity-webview) のマージンを RectTranform から設定できる機能
## 使い方
```cs
var rectTransform = GetComponent();
var margins = WebViewUtils.ToMargins( rectTransform );m_webViewObject.SetMargins
(
left : margins.left ,
top : margins.top ,
right : margins.right ,
bottom : margins.bottom
);
```WebViewUtils.ToMargins に RectTransform を渡して、
取得できた値を WebViewObject.SetMargins に渡すことで、
RectTransform の範囲に WebView を表示できます## 謝辞
- UniWebViewMarginsFromRectTransform は下記のサイト様のスクリプトを使用させていただいております
https://qiita.com/fukaken5050/items/b0d0183c3c61630d9473