Closed muveso closed 2 years ago
is there a proper way to use async (specially UniTask) code implementations with xNode? any example or suggestions?
for example able to use
public override async Task<object> GetValue() { while(!cancelationToken.isCanceled) { var val = await doHeavy(); } return val; }
is there a proper way to use async (specially UniTask) code implementations with xNode? any example or suggestions?
for example able to use