Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OnInvokeAsync for Action? #575

Open
seoyeon01 opened this issue Apr 23, 2024 · 0 comments
Open

OnInvokeAsync for Action? #575

seoyeon01 opened this issue Apr 23, 2024 · 0 comments

Comments

@seoyeon01
Copy link

seoyeon01 commented Apr 23, 2024

I couldn't find it in the document,
It seems that using OnInvokeAsync allows UnityEvent to wait.

for example

public UnityEvent  TestEvent;
public UnityAction TestAction1;
public Action      TestAction2;

private async UniTask TEST()
{
    await TestEvent.OnInvokeAsync(this.GetCancellationTokenOnDestroy());
}

But UnityAction, Action doesn't seem to be able to use something like OnInvokeAsync
Isn't UnityEvent, UnityAction, and Action all public delegate after all?

Why can't await Action.OnInvokeAsync?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant