/// <summary> /// Attempts to find the label id for the given instance id. /// </summary> /// <param name="instanceId">The instanceId of the object for which the labelId should be found</param> /// <param name="labelEntry">The LabelEntry associated with the object. default if not found</param> /// <param name="index">The index of the found LabelEntry in <see cref="LabelConfig{T}.labelEntries"/>. -1 if not found</param> /// <returns>True if a labelId is found for the given instanceId.</returns> public bool TryGetLabelEntryFromInstanceId(uint instanceId, out IdLabelEntry labelEntry, out int index) { if (m_LabelEntryMatchCache == null) { m_LabelEntryMatchCache = new LabelEntryMatchCache(this); } return(m_LabelEntryMatchCache.TryGetLabelEntryFromInstanceId(instanceId, out labelEntry, out index)); }
/// <summary> /// Attempts to find the label id for the given instance id. /// </summary> /// <param name="instanceId">The instanceId of the object for which the labelId should be found</param> /// <param name="labelEntry">The LabelEntry associated with the object. default if not found</param> /// <param name="index">The index of the found LabelEntry in <see cref="LabelConfig{T}.labelEntries"/>. -1 if not found</param> /// <returns>True if a labelId is found for the given instanceId.</returns> public bool TryGetLabelEntryFromInstanceId(uint instanceId, out IdLabelEntry labelEntry, out int index) { EnsureInitLabelEntryMatchCache(); return(m_LabelEntryMatchCache.TryGetLabelEntryFromInstanceId(instanceId, out labelEntry, out index)); }