We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Manager ver 2.2.6 Common ver 2.4.0 WebView ver 2.1.0
웹뷰에서 FullScreen 모드에서 스마트폰을 회전한상태로 Close 버튼을 누르면 유니티 화면이 회전하는 버그
웹뷰 실행 -> 세로 형태 스마트폰을 가로로 회전 ( 설정에서 회전설정 X ) -> 웹뷰 CloseButton 터치 -> 웹뷰가 닫히면서 유니티 화면이 회전
유니티도 세로모드 고정이고 웹뷰도 orientation을 고정했는데 회전을 해버리네요
public void ShowWebView( String url, String title=null, GpmWebViewCallback.GpmWebViewDelegate callback=null, List<string> schemeList=null){ if(url.IsNullOrEmpty()) return; GpmWebView.ShowUrl(url, new GpmWebViewRequest.Configuration() { title = title != null ? title : "타이틀", style = GpmWebViewStyle.FULLSCREEN, orientation=GpmOrientation.PORTRAIT, isClearCookie = true, isClearCache = true, isNavigationBarVisible=true, isCloseButtonVisible = true, supportMultipleWindows = true, #if UNITY_IOS contentMode = GpmWebViewContentMode.MOBILE, isMaskViewVisible = true, isAutoRotation=false #endif // navigationBarColor = "#523CC1", }, callback != null ? callback : WebViewOnCallback, schemeList); }
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
@catchudev 안녕하세요 확인 후 답변드리겠습니다.
Sorry, something went wrong.
Stale issue. Please check this issue.
spin-nhn
No branches or pull requests
Service
Version
Manager ver 2.2.6
Common ver 2.4.0
WebView ver 2.1.0
Describe the bug
웹뷰에서 FullScreen 모드에서 스마트폰을 회전한상태로 Close 버튼을 누르면 유니티 화면이 회전하는 버그
To Reproduce
웹뷰 실행 -> 세로 형태 스마트폰을 가로로 회전 ( 설정에서 회전설정 X ) -> 웹뷰 CloseButton 터치 -> 웹뷰가 닫히면서 유니티 화면이 회전
Expected behavior
유니티도 세로모드 고정이고 웹뷰도 orientation을 고정했는데 회전을 해버리네요
Environment
Unity
Desktop (please complete the following information):
Smartphone (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: