Removes all internal references and listeners as well as removes children from the display list.
Do not use a Container after calling destroy.
Optionaloptions: DestroyOptions
Options parameter. A boolean will act as if all options have been set to that value
replaces the markup source and redraws, so a description can be updated in place
The canvas backend for inline markup, and the counterpart to
RichLabel's HTML text: the sameMarkupSpanstream, laid out once bylayoutMarkupLinesandpositionMarkupLines, drawn here as oneText2Dper styled run (colour, size, emphasis) and oneSprite2Dper<img>span, resolved through the asset resolver. That split is the point - Pixi'sHTMLText(whichRichLabelbuilds on) renders emphasis but has no inline-image primitive, so an image would otherwise be dropped or a caller would have to position it itself at alayoutMarkupLinesoffset by hand. This class is the component that does that wiring.Costs more than a
Label(one drawable per run), so it is for descriptions, dialogue lines and help bodies, not per-frame numbers - the same guidanceRichLabelalready carries.Example