From e8a2823ed38ad298e6b0b5505742b493d97e746a Mon Sep 17 00:00:00 2001 From: hadashiA Date: Sat, 23 Dec 2023 09:35:02 +0900 Subject: [PATCH] Add docs --- website/docs/integrations/entrypoint.mdx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/website/docs/integrations/entrypoint.mdx b/website/docs/integrations/entrypoint.mdx index 9101fbcd..93d036e6 100644 --- a/website/docs/integrations/entrypoint.mdx +++ b/website/docs/integrations/entrypoint.mdx @@ -53,6 +53,14 @@ And [Unity - Manual: Order of Execution for Event Functions](https://docs.unity3d.com/Manual/ExecutionOrder.html) ::: +### async + +`IAsyncStartable` is available as a variant of IStartable. +It has the same timing as IStartable, but `async Awaitable StartAsync()` is available. + +If you are a UniTask user, you can also choose the UniTask version of StartAsync. +[UniTask integration](../integrations/unitask) + ## Handle of the exception that was not caught On the application side, exceptions thrown in processes such as Start() and Tick() cannot be caught outside.