Skip to content

Commit fe4a114

Browse files
Updated Speech Keywords to be simpler.
Fixed issue with first run check.
1 parent 1da02f2 commit fe4a114

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

Assets/HoloToolkit-Tests/Sharing/Scenes/SharingTest.unity

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,7 @@ MonoBehaviour:
700700
m_Name:
701701
m_EditorClassIdentifier:
702702
Keywords:
703-
- Keyword: Show Connection Info
703+
- Keyword: Show Info
704704
Response:
705705
m_PersistentCalls:
706706
m_Calls:
@@ -717,7 +717,7 @@ MonoBehaviour:
717717
m_CallState: 2
718718
m_TypeName: UnityEngine.Events.UnityEvent, UnityEngine, Version=0.0.0.0, Culture=neutral,
719719
PublicKeyToken=null
720-
- Keyword: Hide Connection Info
720+
- Keyword: Hide Info
721721
Response:
722722
m_PersistentCalls:
723723
m_Calls:
@@ -748,9 +748,9 @@ MonoBehaviour:
748748
m_EditorClassIdentifier:
749749
RecognizerStart: 0
750750
Keywords:
751-
- Keyword: Show Connection Info
751+
- Keyword: Show Info
752752
KeyCode: 43
753-
- Keyword: Hide Connection Info
753+
- Keyword: Hide Info
754754
KeyCode: 45
755755
--- !u!1001 &1703234099
756756
Prefab:

Assets/HoloToolkit/Sharing/Scripts/Utilities/ManualIpConfiguration.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,15 @@ private void Start()
7272

7373
private void OnEnable()
7474
{
75-
if (!firstRun)
75+
if (firstRun)
7676
{
77+
firstRun = false;
7778
isTryingToConnect = true;
7879
ConnectToSharingService();
7980
}
8081
else
8182
{
82-
firstRun = false;
83+
isTryingToConnect = false;
8384
}
8485
}
8586

0 commit comments

Comments
 (0)