


楼主这个是因为什么导致的
下面是代码
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using TMPro;
using UnityEngine.UI;
public class DialogueUI : MonoBehaviour
{
private TextMeshProUGUI nameText;
private TextMeshProUGUI contentText;
private Button continuebutton;
public List<string> contentList;
private int contentIndex = 0;
private void Start()
{
nameText = transform.Find("Name").GetComponent<TextMeshProUGUI>();
contentText = transform.Find("Content/ContentText").GetComponent<TextMeshProUGUI>();
continuebutton = transform.Find("ContinueButton/ContinueButtonText").GetComponent<Button>();
continuebutton.onClick.AddListener(this.OnContinueButtonClick);
Hide();
}
public void Show()
{
gameObject.SetActive(true);
}
public void Show(string name, string[] content)
{
nameText.text = name;
contentList = new List<string>();
contentList.AddRange(content);
contentText.text = contentList[0];
gameObject.SetActive(true);
}
public void Hide()
{
gameObject.SetActive(false);
}
private void OnContinueButtonClick()
{
contentIndex++;
if (contentIndex >= contentList.Count)
{
Hide();return;
}
contentText.text = contentList[contentIndex];
}
}