Ask Your Question

ikhanhmai's profile - activity

2015-12-30 22:16:30 -0600 answered a question Unity and matches[i].distance - how do I filter matches

hi, follow the snipe below will help you

DMatch[] arrayDmatch = matches.toArray(); print ("matches "+arrayDmatch);

for (int i = arrayDmatch.Length - 1; i >= 0; i--) {
print ("match "+i+": "+arrayDmatch[i].distance); }