您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
52 行
844 B
52 行
844 B
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class UIDialogueChoicesManager : MonoBehaviour
|
|
{
|
|
public UIDialogueChoiceFiller[] listChoiceButtons;
|
|
|
|
public void FillChoices(List<Choice> choices)
|
|
{
|
|
|
|
if (choices != null)
|
|
{
|
|
int maxCount = Mathf.Max(choices.Count, listChoiceButtons.Length);
|
|
|
|
for (int i = 0; i < maxCount; i++)
|
|
{
|
|
if (i < listChoiceButtons.Length)
|
|
{
|
|
if (i < choices.Count)
|
|
{
|
|
listChoiceButtons[i].FillChoice(choices[i]);
|
|
listChoiceButtons[i].gameObject.SetActive(true);
|
|
|
|
}
|
|
else
|
|
{
|
|
|
|
listChoiceButtons[i].gameObject.SetActive(false);
|
|
|
|
}
|
|
}
|
|
else
|
|
{
|
|
|
|
Debug.LogError("There are more choices than buttons");
|
|
|
|
}
|
|
|
|
}
|
|
if (choices.Count > 0)
|
|
{
|
|
listChoiceButtons[0].SetSelected();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
|