We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
// C# public class Foo : MonoBehaviour { public async Task<string> GetAsyncString() { await Task.Delay(1000); return "GetAsyncString"; } public async Task DoAsyncMethod() { await Task.Delay(1000); print("DoAsyncMethod"); } }
// TS var foo = require("foo") async function test() { const text = await foo.GetAsyncString() log(text) await foo.DoAsyncMethod() } test()