mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
Fix edge case with Oculus.
This commit is contained in:
parent
1bd978e4c3
commit
a6494bf379
1 changed files with 3 additions and 3 deletions
|
@ -135,15 +135,15 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (params.handControllerName) {
|
switch (params.handControllerName) {
|
||||||
case "oculus":
|
|
||||||
handControllerImageURL = "img/tablet-help-oculus.jpg";
|
|
||||||
break;
|
|
||||||
case "windowsMR":
|
case "windowsMR":
|
||||||
handControllerImageURL = "img/tablet-help-windowsMR.jpg";
|
handControllerImageURL = "img/tablet-help-windowsMR.jpg";
|
||||||
break;
|
break;
|
||||||
case "vive":
|
case "vive":
|
||||||
handControllerImageURL = "img/tablet-help-vive.jpg";
|
handControllerImageURL = "img/tablet-help-vive.jpg";
|
||||||
|
break;
|
||||||
|
case "oculus":
|
||||||
default:
|
default:
|
||||||
|
handControllerImageURL = "img/tablet-help-oculus.jpg";
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (params.defaultTab) {
|
switch (params.defaultTab) {
|
||||||
|
|
Loading…
Reference in a new issue