Hide
AddressableAddress

A picker to select an addressable address (key).

  • string group = null the Addressable group name. null for all groups

  • params string[] orLabels the addressable label names to filter. Only entries with this label will be shown. null for 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 both A and B label, or with C label.

  • 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;

addressable_address