Skip to content

Commit

Permalink
Fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Atlinx committed Feb 11, 2023
1 parent 3ce071e commit 1576fb9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ async GDTask<string> DemoAsync()
{
await GDTask.DelayFrame(100);

await UniTask.Delay(TimeSpan.FromSeconds(10));
await UniTask.Delay(TimeSpan.FromSeconds(10));

await GDTask.Yield();
await GDTask.NextFrame();
await GDTask.Yield();
await GDTask.NextFrame();

await GDTask.WaitForEndOfFrame();
await GDTask.WaitForPhysicsProcess();
await GDTask.WaitForEndOfFrame();
await GDTask.WaitForPhysicsProcess();

return "final value";
return "final value";
}
```

0 comments on commit 1576fb9

Please sign in to comment.