1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- /*===============================================================================
- Copyright (C) 2022 Immersal - Part of Hexagon. All Rights Reserved.
- This file is part of the Immersal SDK.
- The Immersal SDK cannot be copied, distributed, or made available to
- third-parties for commercial purposes without written permission of Immersal Ltd.
- Contact sdk@immersal.com for licensing requests.
- ===============================================================================*/
- using UnityEngine;
- using UnityEngine.UI;
- using TMPro;
- namespace Immersal.Samples.Mapping.ActiveMapsList
- {
- public class ActiveMapsListItem : MonoBehaviour
- {
- [SerializeField]
- private TextMeshProUGUI m_MapIdField = null;
- [SerializeField]
- private TextMeshProUGUI nameField = null;
- [SerializeField]
- private Toggle toggle = null;
- public int mapId = -1;
- private ActiveMapsListControl m_ActiveMapsListControl = null;
-
- private void ToggleValueChanged(Toggle t)
- {
- if(t.isOn && mapId > 0)
- {
- Debug.Log(string.Format("toggle on: {0}", mapId));
- m_ActiveMapsListControl.rootMapId = mapId;
- }
- }
- public void SetStateManually(bool isOn)
- {
- toggle.isOn = isOn;
- ToggleValueChanged(toggle);
- }
- public void SetMapId(int id)
- {
- if (m_MapIdField != null)
- {
- mapId = id;
- m_MapIdField.text = string.Format("{0}", id);
- }
- }
- public void SetToggleGroup(ToggleGroup toggleGroup)
- {
- if (toggle != null)
- {
- toggle.group = toggleGroup;
- }
- }
- public void SetName(string mapName)
- {
- if (nameField != null)
- {
- nameField.text = string.Format("{0}", mapName);
- }
- }
- public void SetListController(ActiveMapsListControl activeMapsListControl)
- {
- m_ActiveMapsListControl = activeMapsListControl;
- }
- private void Start()
- {
- toggle.onValueChanged.AddListener(delegate {ToggleValueChanged(toggle);});
- }
- }
- }
|