37 lines
842 B
C#
37 lines
842 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.EventSystems;
|
|
using UnityEngine.UI;
|
|
|
|
/// <summary>
|
|
/// ¶¨Î»¶Ë¿Ú
|
|
/// </summary>
|
|
public class LocatingCable : MonoBehaviour/*, IPointerDownHandler*/
|
|
{
|
|
|
|
LineItem lineItem;
|
|
SearchName searchName;
|
|
public List<Transform> lines = new List<Transform>();
|
|
|
|
//public void OnPointerDown(PointerEventData eventData)
|
|
//{
|
|
// if (searchName)
|
|
// searchName.showXianLan(lineItem.info_text.text);
|
|
//}
|
|
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
//lineItem = GetComponent<LineItem>();
|
|
//if (PatternChoose.Inst)
|
|
// searchName = PatternChoose.Inst.search_go.GetComponent<SearchName>();
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|