Edit of asset "Nesinkrona" Accepted

Old/Current New/Edit
Title Nesinkrona Nesinkrona
Description !! IMPORTANT !!

This add-on is no longer maintained by me.
And continues to be maintained here:

https://github.com/folt-a/godot-nesink

---

I am notified here cause there is no way to delete the submitted assets.
Extend `await` of GDScript a bit.
For those seeking like a JS Promise or C# Task.

# Multiple Async or Signal or Coroutine can be combined into a new Async
var all_async := Async.all([
Async.from(_coro), # from Async
obj.signal, # from Signal
func(): return 0 # from Coroutine
])
var result = await all_async.wait()

# or you can await it immediately.
var result = await Async.wait_all([
Async.from(_coro),
obj.signal,
func(): return 0
])

# Includes general patterns for await
Async.all()
Async.all_settled()
Async.any()
Async.race()
Async.wait_all()
Async.wait_all_settled()
Async.wait_any()
Async.wait_race()

# and support continuations and cancellations.
var another_async = async.then(func(prev_result):
return prev_result * prev_result)
var cancel := Cancel.new()
await another_async.wait(cancel)
Category Scripts Scripts
License MIT MIT
Repository Provider GitHub GitHub
Repository Url https://github.com/ydipeepo/godot-nesink https://github.com/ydipeepo/godot-nesink
Issues Url https://github.com/ydipeepo/godot-nesink/issues https://github.com/ydipeepo/godot-nesink/issues
Godot version Godot 4.0 Godot 4.0
Version String 1.0.1 1.0.1
Download Commit 82d84a3cfd16d283abe48271448627954decaf29 82d84a3cfd16d283abe48271448627954decaf29
Download Url (Computed) https://github.com/ydipeepo/godot-nesink/archive/82d84a3cfd16d283abe48271448627954decaf29.zip https://github.com/ydipeepo/godot-nesink/archive/82d84a3cfd16d283abe48271448627954decaf29.zip
Icon Url https://raw.githubusercontent.com/ydipeepo/godot-nesink/main/icon.png
https://raw.githubusercontent.com/ydipeepo/godot-nesink/main/icon.png