AddressableAddressA picker to select an addressable address (key).
-
string group = nullthe Addressable group name.nullfor all groups -
params string[] orLabelsthe addressable label names to filter. Onlyentrieswith this label will be shown.nullfor no filter.If it requires multiple labels, use
A && B, then only entries with both labels will be shown.If it requires any of the labels, just pass them separately, then entries with either label will be shown. For example, pass
"A && B", "C"will show entries with bothAandBlabel, or withClabel. -
Allow Multiple: No
using SaintsField.Addressable; [AddressableAddress] // from all group public string address; [AddressableAddress("Packed Assets")] // from this group public string addressInGroup; [AddressableAddress(null, "Label1", "Label2")] // either has label `Label1` or `Label2` public string addressLabel1Or2; // must have both label `default` and `Label1` // or have both label `default` and `Label2` [AddressableAddress(null, "default && Label1", "default && Label2")] public string addressLabelAnd;
