Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
Closekey | The key of the information. |
value | The value of the information. |
IQueryEngineFilter The current filter.
Add or update additional information specific to the filter.
You can use this function to add additional information on the filter.
// Add a description to the filter var descriptionKey = "desc"; var descriptionValue = "This filters the objects based on their id."; var exampleKey = "example"; var exampleValue = "id>10 or id=2"; queryEngine.TryGetFilter("id", out var filter); filter.AddOrUpdateMetaInfo(descriptionKey, descriptionValue) .AddOrUpdateMetaInfo(exampleKey, exampleValue);
You can then retrieve that information by accessing the metaInfo property directly.
var descriptionKey = "desc"; var allFilters = queryEngine.GetAllFilters(); var filtersWithDescription = allFilters.Where(f => f.metaInfo.ContainsKey(descriptionKey));
See metaInfo for a complete example.