Suggestor methods
Custom suggestor methods
[Suggestor(typeof(Vector3))]
public static string[] VectorSuggestor(CommandInfo.Parameter parameter)
{
return new string[]
{
"(0, 0, 0)",
"(1, 1, 1)",
"(1, 0, 0)",
"(0, 1, 0)",
"(0, 0, 1)"
}
}Last updated