This commit is contained in:
syeopite 2021-09-06 09:19:18 +00:00 committed by GitHub
parent 4b3d5dc20f
commit 97d444ede4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -154,7 +154,7 @@ if (video_data.vr && video_data.params.vr_mode) {
switch (video_data.projection_type) { switch (video_data.projection_type) {
case "EQUIRECTANGULAR": case "EQUIRECTANGULAR":
player.vr({projection: "equirectangular"}); player.vr({projection: "equirectangular"});
default: // Should only be "MESH". But We'll use this as a fallback. default: // Should only be "MESH" but we'll use this as a fallback.
player.vr({projection: "EAC"}); player.vr({projection: "EAC"});
} }
} }