mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Merge pull request #10154 from davidkelly/dk/3995
updated connection instructions
This commit is contained in:
commit
8682df6bb7
1 changed files with 14 additions and 10 deletions
|
@ -910,17 +910,21 @@ Rectangle {
|
||||||
color: hifi.colors.darkGray
|
color: hifi.colors.darkGray
|
||||||
wrapMode: Text.WordWrap
|
wrapMode: Text.WordWrap
|
||||||
textFormat: Text.StyledText;
|
textFormat: Text.StyledText;
|
||||||
|
property string hmdMountedInstructions:
|
||||||
|
"1. Put your hand out onto their hand and squeeze your controller's grip button on its side.<br>" +
|
||||||
|
"2. Once the other person puts their hand onto yours, you'll see your connection form.<br>" +
|
||||||
|
"3. After about 3 seconds, you're connected!"
|
||||||
|
property string hmdNotMountedInstructions:
|
||||||
|
"1. Press and hold the 'x' key to extend your arm.<br>" +
|
||||||
|
"2. Once the other person puts their hand onto yours, you'll see your connection form.<br>" +
|
||||||
|
"3. After about 3 seconds, you're connected!";
|
||||||
|
property string notLoggedInInstructions: "<b><font color='red'>You must be logged into your High Fidelity account to make connections.</b></font><br>"
|
||||||
|
property string instructions:
|
||||||
|
"<b>When you meet someone you want to remember later, you can <font color='purple'>connect</font> with a handshake:</b><br><br>"
|
||||||
// Text
|
// Text
|
||||||
text: HMD.isMounted ?
|
text:
|
||||||
"<b>When you meet someone you want to remember later, you can <font color='purple'>connect</font> with a handshake:</b><br><br>" +
|
Account.isLoggedIn() ? ( HMD.mounted ? instructions + hmdMountedInstructions : instructions + hmdNotMountedInstructions)
|
||||||
"1. Put your hand out onto their hand and squeeze your controller's grip button on its side.<br>" +
|
: ( HMD.mounted ? notLoggedInInstructions + instructions + hmdMountedInstructions : notLoggedInInstructions + instructions + hmdNotMountedInstructions)
|
||||||
"2. Once the other person puts their hand onto yours, you'll see your connection form.<br>" +
|
|
||||||
"3. After about 3 seconds, you're connected!"
|
|
||||||
:
|
|
||||||
"<b>When you meet someone you want to remember later, you can <font color='purple'>connect</font> with a handshake:</b><br><br>" +
|
|
||||||
"1. Press and hold the 'x' key to extend your arm.<br>" +
|
|
||||||
"2. Once the other person puts their hand onto yours, you'll see your connection form.<br>" +
|
|
||||||
"3. After about 3 seconds, you're connected!";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue