The <tags> element ======================== The `` element lives right below your top-level `` element. It allows you to specify details about the tags you use throughout your instrument. It is however not actually necessary to include a `` element for every tag you use. You only need to create this if you want to specify additional details about your tags. ## The <tag> element Underneath the `` element, you can have any number of `` elements. These specify details for each individual tag that you use throughout your sample mapping. Attributes: | Attribute | | Description | |:----------------|:-----------|:----------------------------------------------------------------------------------| | **`enabled`** | (optional) | Whether or not this tag is enabled. Possible values: true, false. Default: true | | **`volume`** | (optional) | A number for 0.0 to 1.0 that specifies the initial volume for a tag. Default: 1.0 | | **`polyphony`** | (optional) | A whole number that specifies the number of voices allowed for this tag. Default: -1 (unlimited). Set to 1 for monophonic behavior. | ## Example This example shows a tag configuration with polyphony control: ```xml ``` The `polyphony` attribute can be controlled dynamically using bindings with the `TAG_POLYPHONY` parameter. This is useful for creating mono/poly switches: ```xml ```