Skip to content

Commit 5301b28

Browse files
authored
Merge pull request #49 from JohannesDeml/ci/upgrade-unity/from-2022.2.13f1-to-2022.2.14f1
[Automated workflow] upgrade-unity from 2022.2.13f1 to 2022.2.14f1
2 parents a249bfb + fb7b03a commit 5301b28

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Assets/WebGLTemplates/Develop/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150
if(isMobile) {
151151
// Define a maximum pixel ratio for mobile to avoid rendering at too high resolutions
152152
const maxPixelRatioMobile = 2.0;
153-
config.devicePixelRatio = Math.min(window.devicePixelRatio, maxDevicePixelRatio);
153+
config.devicePixelRatio = Math.min(window.devicePixelRatio, maxPixelRatioMobile);
154154
}
155155

156156
var canvas = document.querySelector("#unity-canvas");

Assets/WebGLTemplates/Release/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149
if(isMobile) {
150150
// Define a maximum pixel ratio for mobile to avoid rendering at too high resolutions
151151
const maxPixelRatioMobile = 2.0;
152-
config.devicePixelRatio = Math.min(window.devicePixelRatio, maxDevicePixelRatio);
152+
config.devicePixelRatio = Math.min(window.devicePixelRatio, maxPixelRatioMobile);
153153
}
154154

155155
var canvas = document.querySelector("#unity-canvas");

ProjectSettings/ProjectVersion.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
m_EditorVersion: 2022.2.13f1
2-
m_EditorVersionWithRevision: 2022.2.13f1 (5f5de2657605)
1+
m_EditorVersion: 2022.2.14f1
2+
m_EditorVersionWithRevision: 2022.2.14f1 (b2c9b1ac6cc0)

0 commit comments

Comments
 (0)