diff --git a/source/model/meshinstanceid.js b/source/model/meshinstanceid.js index 230d5e4..7686d78 100644 --- a/source/model/meshinstanceid.js +++ b/source/model/meshinstanceid.js @@ -10,4 +10,9 @@ OV.MeshInstanceId = class { return this.nodeId === rhs.nodeId && this.meshIndex === rhs.meshIndex; } + + GetKey () + { + return this.nodeId.toString () + ':' + this.meshIndex.toString (); + } };