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.
1 parent b71f7c4 commit 42b582cCopy full SHA for 42b582c
Unity/Assets/NativeScript/Bindings.cs
@@ -38,6 +38,9 @@ public static class ObjectStore
38
public static void Init(int maxObjects)
39
{
40
ObjectStore.maxObjects = maxObjects;
41
+ handleLookupByHash = new Dictionary<uint, int> ();
42
+ hashLookupByHandle = new Dictionary<int, uint> ();
43
+ freeHandleStack = new Stack<int> ();
44
45
// Initialize the objects as all null plus room for the
46
// first to always be null.
0 commit comments