Static commands
Adding static commands
[Command]
public static void SayHello()
{
Debug.Log("Hello world!");
}[Command("Test", "Hello", "Debug")]
public static void SayHello()
{
Debug.Log("Hello world!");
}[Command]
public static int Multiply(int a, int b)
{
return a * b;
}Last updated