fix errors and bump version
This commit is contained in:
parent
e53407a989
commit
771d223e80
@ -1,5 +1,4 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Collections.Concurrent;
|
using System.Collections.Concurrent;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
@ -37,7 +36,10 @@ public class UnityMainThreadDispatcher : MonoBehaviour
|
|||||||
{
|
{
|
||||||
while (_executionQueue.Count > 0)
|
while (_executionQueue.Count > 0)
|
||||||
{
|
{
|
||||||
_executionQueue.Dequeue().Invoke();
|
if(_executionQueue.TryDequeue(out var action))
|
||||||
|
{
|
||||||
|
action.Invoke();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"name": "com.bywaystudios.aihelper"
|
||||||
|
}
|
||||||
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: be0e1d5cd2be65b4c9a540ff0f6424fa
|
||||||
|
AssemblyDefinitionImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "com.bywaystudios.aihelper",
|
"name": "com.bywaystudios.aihelper",
|
||||||
"displayName": "AIHelper",
|
"displayName": "AIHelper",
|
||||||
"version": "0.1.3",
|
"version": "0.1.4",
|
||||||
"description": "Package to include AI Helper"
|
"description": "Package to include AI Helper"
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue
Block a user