Unity控制檯console列印富文字

weigang發表於2024-05-21

可以用來控制Debug列印文字的 加粗 斜體 大小 顏色

Debug.Log("Hello World".AddBoldTag().AddColorTag("red"));
public static class StringTagExt
{
    public static string AddBoldTag(this string text)
    {
        return text.AddTag("b");
    }

    public static string AddItalicTag(this string text)
    {
        return text.AddTag("i");
    }

    public static string AddSizeTag(this string text, int size)
    {
        return text.AddTag("size", size);
    }

    public static string AddColorTag(this string text, string colorName)
    {
        return text.AddTag("color", colorName);
    }

    private static string AddTag(this string text, string tagName)
    {
        return $"<{tagName}>{text}</{tagName}>";
    }

    private static string AddTag(this string text, string tagName, object value1)
    {
        return $"<{tagName}=\"{value1}\">{text}</{tagName}>";
    }
}

相關文章