Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- TextMeshPro
- untiy
- TextMeshPro 한글
- Android
- android app bundle
- 커스텀쉐이더
- AR
- 에셋번들
- kinect v2
- Rewired
- web3D
- 랜더스트리밍
- Depth camera
- RenderStreaming
- DS4
- 역직렬화 오류
- 반응형레이아웃
- muilt controller
- apk
- Specular Highlights
- WebGL
- 유니티
- Unity
- 구글플레이스토어
- 듀얼쇼크4
- Unity VisualStudio
- webview
- unityhub
- AssetBundle
- Environment Reflections
Archives
- Today
- Total
기억저장고
unity WebGL 빌드 후, Mac에서만 느릴경우 해결 본문
Html파일에서 추가하기
window.devicePixelRatio = 1;
위치)
var script = document.createElement("script");
var myGameInstance = null;
script.src = loaderUrl;
script.onload = () => {
createUnityInstance(canvas, config, (progress) => {
progressBarFull.style.width = 100 * progress + "%";
}).then((unityInstance) => {
window.devicePixelRatio = 1;//이것!...
myGameInstance = unityInstance;
loadingBar.style.display = "none";
}).catch((message) => {
alert(message);
});
};
출처
https://stackoverflow.com/questions/63749024/unity-webgl-performance-issues-on-retina-macbook
https://forum.unity.com/threads/webgl-retina-scaling.853144/
'Unity' 카테고리의 다른 글
WebGL RendertTexture.Create failed: requested size is too large 오류 해결방법 (0) | 2023.11.24 |
---|---|
Unity SpriteEditor 사용해서, 네임태그 늘려쓰기 (0) | 2023.11.14 |
Target API 올렸을때 나온 모든 오류 (0) | 2023.10.13 |
[Unity] 타켓위치 기준으로 카메라Zoom In/Out 하는법 (0) | 2023.09.26 |
[Unity]카메라 360 회전 시, 부드럽게(관성)회전 방법 (0) | 2023.09.20 |
Comments