You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
499 B
20 lines
499 B
4 years ago
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
using UnityEngine.UI;
|
||
|
|
||
|
public class ErrorInfoItem : MonoBehaviour
|
||
|
{
|
||
|
public Text TimeText;
|
||
|
public Text RoleText;
|
||
|
//private Text EventText;
|
||
|
public Text DescribeText;
|
||
|
// Start is called before the first frame update
|
||
|
public void SetValue(ReportErroeSyncData data)
|
||
|
{
|
||
|
TimeText.text = data.Time;
|
||
|
RoleText.text = data.errorset;
|
||
|
DescribeText.text = data.describe;
|
||
|
}
|
||
|
}
|