您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
26 行
1.0 KiB
26 行
1.0 KiB
using UnityEngine;
|
|
|
|
namespace Unity.Multiplayer.Samples.BossRoom.Visual
|
|
{
|
|
/// <summary>
|
|
/// Data storage of all the valid strings used to create a player's name.
|
|
/// Currently names are a two word combination in Adjective-Noun Combo (e.g. Happy Apple)
|
|
/// </summary>
|
|
[CreateAssetMenu(menuName = "GameData/NameGeneration", order = 2)]
|
|
public class NameGenerationData : ScriptableObject
|
|
{
|
|
[Tooltip("The list of all possible strings the game can use as the first word of a player name")]
|
|
public string[] FirstWordList;
|
|
|
|
[Tooltip("The list of all possible strings the game can use as the second word in a player name")]
|
|
public string[] SecondWordList;
|
|
|
|
public string GenerateName()
|
|
{
|
|
var firstWord = FirstWordList[Random.Range(0, FirstWordList.Length - 1)];
|
|
var secondWord = SecondWordList[Random.Range(0, SecondWordList.Length - 1)];
|
|
|
|
return firstWord + " " + secondWord;
|
|
}
|
|
}
|
|
}
|