您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
24 行
699 B
24 行
699 B
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using TMPro;
|
|
using UnityEngine;
|
|
|
|
public abstract class SettingsSystemSubComponents : MonoBehaviour
|
|
{
|
|
protected List<TMP_Dropdown.OptionData> GetDropdownData(string[] optionNames, params string[] customOptions)
|
|
{
|
|
List<TMP_Dropdown.OptionData> options = new List<TMP_Dropdown.OptionData>();
|
|
foreach (string option in optionNames)
|
|
{
|
|
options.Add(new TMP_Dropdown.OptionData(option));
|
|
}
|
|
|
|
foreach (string option in customOptions)
|
|
{
|
|
options.Add(new TMP_Dropdown.OptionData(option));
|
|
}
|
|
return options;
|
|
}
|
|
|
|
protected abstract void Setup();
|
|
}
|