ui/richtext/bases/RichTextHalfSpacer.cs

A simple RichText element class used by the UI. It defines a half-width spacer panel for rich text by setting HideText true and small negative left/right margins.

[RichTextPanel( @"__" )]
public class RichTextHalfSpacer : RichTextBase
{
	public override bool HideText => true;
	public override float? MarginLeft => -2f;
	public override float? MarginRight => -2f;
}