namespace GFramework.Godot.Text.Effects; /// /// 为文本应用绿色语义高亮。 /// [GlobalClass] [Tool] public partial class RichTextGreenEffect : RichTextEffectBase { private static readonly Color GreenColor = new(0.46f, 0.91f, 0.49f, 1.0f); /// /// 获取标签名。 /// protected override string TagName => "green"; /// /// 应用绿色颜色效果。 /// /// 当前字符上下文。 /// 始终返回 public override bool _ProcessCustomFX(CharFXTransform charFx) { charFx.Color = GreenColor; return true; } }