ui/richtext/RichTextJump.cs

A RichText panel component that matches the word "jump" or "jumping" and defines visual styling and animation properties. It sets a color, an animation name, duration, and timing function for matched text.

using Sandbox;

[RichTextPanel( @"\b[Jj]ump(ing)?\b" )]
public class RichTextJump : RichTextBase
{
	public override Color Color => new Color(0.8f, 0.3f, 0.5f );

	public override string AnimationName => "jump";
	public override float? AnimationDuration => 1.3f;
	public override string AnimationTimingFunction => "ease-in";
}