Mirror/Assets
Paul Pacheco 1736bb0c42
fix: call callback after update dictionary in host (#1476)
When the callback for SyncDictionary is called in the server
for set or add
it is getting called before the syncdictionary is updated.

In the client this happens after.  

Example:

```cs
   public void OnScoreUpdatedCallback(ScoreSyncDict.Operation op, uint ident, int score) 
   {
       if (op == ScoreSyncDict.Operation.OP_SET) 
              Debug.Log($"The value in the dictionary is {scoreDict[ident]}");
   }
```

In host mode this prints the previous value.   In client mode this prints the current value.  This PR fixes this problem and makes both print the current value
2020-02-02 20:29:31 -06:00
..
Mirror fix: call callback after update dictionary in host (#1476) 2020-02-02 20:29:31 -06:00
ScriptTemplates Updated ScriptTemplates 2020-01-31 21:25:38 -05:00
Mirror.meta Source based instead of dll (#277) 2019-01-13 21:08:54 +01:00
ScriptTemplates.meta add missing meta file 2019-11-23 11:00:49 +09:00