33 lines
528 B
C#
33 lines
528 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class CableUI : MonoBehaviour
|
|
{
|
|
public Text port_A;
|
|
public Text port_A_cabinet;
|
|
public Text port_A_deviceName;
|
|
public Text port_B;
|
|
public Text port_B_cabinet;
|
|
public Text port_B_deviceName;
|
|
|
|
|
|
private void Awake()
|
|
{
|
|
|
|
gameObject.SetActive(false);
|
|
}
|
|
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|