19 lines
304 B
C#
19 lines
304 B
C#
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class UI_Wall : MonoBehaviour
|
|
{
|
|
public M2Mqtt mqtt;
|
|
public Text log;
|
|
/*
|
|
private void Update()
|
|
{
|
|
//log = mqtt.log[5];
|
|
for(int i = 0; i < 20; i++)
|
|
{
|
|
print(mqtt.info[0].value);
|
|
}
|
|
}
|
|
*/
|
|
}
|