diff --git a/interface/resources/qml/hifi/Pal.qml b/interface/resources/qml/hifi/Pal.qml
index d785a8582c..1e72d71b18 100644
--- a/interface/resources/qml/hifi/Pal.qml
+++ b/interface/resources/qml/hifi/Pal.qml
@@ -910,17 +910,21 @@ Rectangle {
color: hifi.colors.darkGray
wrapMode: Text.WordWrap
textFormat: Text.StyledText;
+ property string hmdMountedInstructions:
+ "1. Put your hand out onto their hand and squeeze your controller's grip button on its side.
" +
+ "2. Once the other person puts their hand onto yours, you'll see your connection form.
" +
+ "3. After about 3 seconds, you're connected!"
+ property string hmdNotMountedInstructions:
+ "1. Press and hold the 'x' key to extend your arm.
" +
+ "2. Once the other person puts their hand onto yours, you'll see your connection form.
" +
+ "3. After about 3 seconds, you're connected!";
+ property string notLoggedInInstructions: "You must be logged into your High Fidelity account to make connections.
"
+ property string instructions:
+ "When you meet someone you want to remember later, you can connect with a handshake:
"
// Text
- text: HMD.isMounted ?
- "When you meet someone you want to remember later, you can connect with a handshake:
" +
- "1. Put your hand out onto their hand and squeeze your controller's grip button on its side.
" +
- "2. Once the other person puts their hand onto yours, you'll see your connection form.
" +
- "3. After about 3 seconds, you're connected!"
- :
- "When you meet someone you want to remember later, you can connect with a handshake:
" +
- "1. Press and hold the 'x' key to extend your arm.
" +
- "2. Once the other person puts their hand onto yours, you'll see your connection form.
" +
- "3. After about 3 seconds, you're connected!";
+ text:
+ Account.isLoggedIn() ? ( HMD.mounted ? instructions + hmdMountedInstructions : instructions + hmdNotMountedInstructions)
+ : ( HMD.mounted ? notLoggedInInstructions + instructions + hmdMountedInstructions : notLoggedInInstructions + instructions + hmdNotMountedInstructions)
}
}