Add key generator to mesh instance id.

This commit is contained in:
kovacsv 2021-10-24 21:22:14 +02:00
parent d36e113dea
commit f5cedf6842

View File

@ -10,4 +10,9 @@ OV.MeshInstanceId = class
{
return this.nodeId === rhs.nodeId && this.meshIndex === rhs.meshIndex;
}
GetKey ()
{
return this.nodeId.toString () + ':' + this.meshIndex.toString ();
}
};