private void Play(Action onComplete)
{
onComplete?.Invoke();
}
private async Task PlayAsync()
{
var task = new TaskCompletionSource<bool>();
Play((() => task.SetResult(true)));
await task.Task;
}
private async UniTask PlayAsyncUniTask()
{
}