기억저장고

unity 안드로이드 WebView 개발 툴 본문

Unity

unity 안드로이드 WebView 개발 툴

기억해조 2022. 8. 3. 23:38

유니티 WebView 개발 툴 링크 

https://github.com/gree/unity-webview

 

GitHub - gree/unity-webview

Contribute to gree/unity-webview development by creating an account on GitHub.

github.com

 

[순서]

1. 위 링크 들어가서 dist/unity-webview.unitypackage 파일 다운로드 

2. 유니티에서 Package 풀기 

3. WebViewSample/Sample.unity 샘플 씬 분석하기.. (SampleWebView.cs 코드 중요)

 

* SampleWebView.cs - URL에 원하는 링크 넣으면 동작함

(테스트버전 - 2020.3.28f)

 

* 유니티처럼 Postion,Scale값으로 되어있지 않고, margin left,right,top,bottom으로 되어 있음

 

 - WebViewObject.cs의 SetCenterPositionWithScale(Vector2 center, Vector2 scale) 함수를 사용하면 됨

(Margin값 계산해서 배치해준다.)

 

Comments