Add hide speech command
This commit is contained in:
parent
b075761ed1
commit
2b9e052bd2
|
@ -52,7 +52,7 @@ MonoBehaviour:
|
||||||
description: None
|
description: None
|
||||||
axisConstraint: 0
|
axisConstraint: 0
|
||||||
- localizationKey:
|
- localizationKey:
|
||||||
keyword: Select
|
keyword: Hide
|
||||||
keyCode: 0
|
keyCode: 0
|
||||||
action:
|
action:
|
||||||
id: 0
|
id: 0
|
||||||
|
|
|
@ -5831,7 +5831,7 @@ MonoBehaviour:
|
||||||
m_PrefabInstance: {fileID: 0}
|
m_PrefabInstance: {fileID: 0}
|
||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
m_GameObject: {fileID: 963194225}
|
m_GameObject: {fileID: 963194225}
|
||||||
m_Enabled: 1
|
m_Enabled: 0
|
||||||
m_EditorHideFlags: 0
|
m_EditorHideFlags: 0
|
||||||
m_Script: {fileID: 11500000, guid: bf98dd1206224111a38765365e98e207, type: 3}
|
m_Script: {fileID: 11500000, guid: bf98dd1206224111a38765365e98e207, type: 3}
|
||||||
m_Name:
|
m_Name:
|
||||||
|
@ -9846,6 +9846,34 @@ MonoBehaviour:
|
||||||
m_StringArgument:
|
m_StringArgument:
|
||||||
m_BoolArgument: 0
|
m_BoolArgument: 0
|
||||||
m_CallState: 2
|
m_CallState: 2
|
||||||
|
- keyword: Hide
|
||||||
|
response:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls:
|
||||||
|
- m_Target: {fileID: 491721038}
|
||||||
|
m_TargetAssemblyTypeName: EndpointLoader, Assembly-CSharp
|
||||||
|
m_MethodName: ToggleItemsVisibility
|
||||||
|
m_Mode: 1
|
||||||
|
m_Arguments:
|
||||||
|
m_ObjectArgument: {fileID: 0}
|
||||||
|
m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
|
||||||
|
m_IntArgument: 0
|
||||||
|
m_FloatArgument: 0
|
||||||
|
m_StringArgument:
|
||||||
|
m_BoolArgument: 0
|
||||||
|
m_CallState: 2
|
||||||
|
- m_Target: {fileID: 2018722013}
|
||||||
|
m_TargetAssemblyTypeName: UnityEngine.AudioSource, UnityEngine
|
||||||
|
m_MethodName: PlayOneShot
|
||||||
|
m_Mode: 2
|
||||||
|
m_Arguments:
|
||||||
|
m_ObjectArgument: {fileID: 8300000, guid: 4075162bd7e8d9b4387ba77aeb751a0d, type: 3}
|
||||||
|
m_ObjectArgumentAssemblyTypeName: UnityEngine.AudioClip, UnityEngine
|
||||||
|
m_IntArgument: 0
|
||||||
|
m_FloatArgument: 0
|
||||||
|
m_StringArgument:
|
||||||
|
m_BoolArgument: 0
|
||||||
|
m_CallState: 2
|
||||||
persistentKeywords: 0
|
persistentKeywords: 0
|
||||||
speechConfirmationTooltipPrefab: {fileID: 8046114618238072051, guid: 271778f6c957b524981067a81d238394, type: 3}
|
speechConfirmationTooltipPrefab: {fileID: 8046114618238072051, guid: 271778f6c957b524981067a81d238394, type: 3}
|
||||||
--- !u!82 &2018722013
|
--- !u!82 &2018722013
|
||||||
|
|
|
@ -26,6 +26,7 @@ public class EndpointLoader : MonoBehaviour
|
||||||
private List<GameObject> instantiatedItems = new List<GameObject>();
|
private List<GameObject> instantiatedItems = new List<GameObject>();
|
||||||
private HashSet<MdnsService> availableServices = new HashSet<MdnsService>();
|
private HashSet<MdnsService> availableServices = new HashSet<MdnsService>();
|
||||||
private float loadTimeout = 10f;
|
private float loadTimeout = 10f;
|
||||||
|
private bool areItemsVisible = true;
|
||||||
|
|
||||||
private const string defaultApiUrl = "http://windows.local:5000/api/endpoints";
|
private const string defaultApiUrl = "http://windows.local:5000/api/endpoints";
|
||||||
private const string defaultEndpoint1 = "http://windows.local:8100/mystream/";
|
private const string defaultEndpoint1 = "http://windows.local:8100/mystream/";
|
||||||
|
@ -79,6 +80,15 @@ public class EndpointLoader : MonoBehaviour
|
||||||
return cameraTransform.position + cameraTransform.TransformDirection(localOffset);
|
return cameraTransform.position + cameraTransform.TransformDirection(localOffset);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void ToggleItemsVisibility()
|
||||||
|
{
|
||||||
|
areItemsVisible = !areItemsVisible;
|
||||||
|
foreach (var item in instantiatedItems)
|
||||||
|
{
|
||||||
|
item.SetActive(areItemsVisible);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private float GetItemWidth(GameObject item)
|
private float GetItemWidth(GameObject item)
|
||||||
{
|
{
|
||||||
RectTransform rectTransform = item.GetComponent<RectTransform>();
|
RectTransform rectTransform = item.GetComponent<RectTransform>();
|
||||||
|
|
Loading…
Reference in New Issue