cyinwind
Results
1
issues of
cyinwind
猜测原因: webgl平台对线程支持不完善,具体的报错我贴到最后。 我的解决方案: 用LockFreeQueue refQueue 替换 QueuerefQueue 以下是LockFreeQueue的代码,供参考: public class LockFreeQueue { internal class SingleLinkNode where U : T { public SingleLinkNode Next; public U Item; } static private bool...