Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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 から設定できる機能

Awesome Lists containing this project

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