Name Generator is a static public class.
NVJOBNameGen.GiveAName(Type Name) - Get the name according to the selected type.
Type Name - (int) the type of name, there are currently 7 types of names (see list):
1 - Female Old Name.
2 - Female New Name.
3 - Male Old Name.
4 - Male New Name.
5 - Female Fantasy Name.
6 - Male Fantasy Name.
7 - Sci Fi Name.
using UnityEngine;
using UnityEngine.UI;
public class Example : MonoBehaviour
{
public int typeName = 7; // 7 - Sci Fi Name
void Start()
{
string curentName = NVJOBNameGen.Uppercase(NVJOBNameGen.GiveAName(typeName));
GetComponent<Text>().text = curentName;
print(curentName);
}
}