untag method

void untag(
  1. String? tag
)

Remove an arbitrary tag from a track.

A tag can be any valid C string in UTF-8 encoding. It can be useful to group tracks in various ways. For example, everything in-game might be marked as "game", so when the user brings up the settings menu, the app can pause all tracks involved in gameplay at once, but keep background music and menu sound effects running.

It's legal to remove a tag that the track doesn't have; this function doesn't report errors, so this simply does nothing.

\param track the track from which to remove a tag. \param tag the tag to remove.

\threadsafety It is safe to call this function from any thread.

\since This function is available since SDL_mixer 3.0.0.

\sa MIX_TagTrack

extern SDL_DECLSPEC void SDLCALL MIX_UntagTrack(MIX_Track *track, const char *tag)

{@category mixer}

Implementation

void untag(String? tag) => mixUntagTrack(this, tag);