Replaced LINQ Dirty field counting code as it allocates garbage (?!?!)

This commit is contained in:
Albin Corén 2018-04-03 19:16:07 +02:00
parent 1d4cb9a347
commit f2c3662f63

View File

@ -462,7 +462,13 @@ namespace MLAPI.MonoBehaviours.Core
SetDirtyness();
if(Time.time - lastSyncTime >= SyncVarSyncDelay)
{
byte dirtyCount = (byte)dirtyFields.Count(x => x == true);
byte dirtyCount = 0;
for (byte i = 0; i < dirtyFields.Length; i++)
{
if (dirtyFields[i])
dirtyCount++;
}
if (dirtyCount == 0)
return; //All up to date!
//It's sync time!