예제 #1
0
    // Return a promise for all actions to use
    private CommandGroup Promise()
    {
        var task = new CommandGroup();

        task.OnCompleted((ep) => { Debug.Log("Completed all animations!"); });
        return(task);
    }