Unity UI dropdown List remove duplicated values
Add an directive using System.Collections.Generic; Create an list of strings called scannedNames private List<string> scannedNames; Then initiate the List in Start() scannedNames = new List<string>(); Then When the Discovered Event…