fix:1、更换项目,使用winter来创建

This commit is contained in:
2026-04-22 11:13:16 +08:00
parent 173cfb2dc9
commit 83ff9f71ad
7375 changed files with 209752 additions and 157557 deletions
@@ -0,0 +1,52 @@
using System.Collections.Generic;
using FairyGUI.Utils;
namespace FairyGUI
{
/// <summary>
/// GRichTextField class.
/// </summary>
public class GRichTextField : GTextField
{
/// <summary>
///
/// </summary>
public RichTextField richTextField { get; private set; }
public GRichTextField()
: base()
{
}
override protected void CreateDisplayObject()
{
richTextField = new RichTextField();
richTextField.gOwner = this;
displayObject = richTextField;
_textField = richTextField.textField;
}
override protected void SetTextFieldText()
{
string str = _text;
if (_templateVars != null)
str = ParseTemplate(str);
_textField.maxWidth = maxWidth;
if (_ubbEnabled)
richTextField.htmlText = UBBParser.inst.Parse(str);
else
richTextField.htmlText = str;
}
/// <summary>
///
/// </summary>
public Dictionary<uint, Emoji> emojies
{
get { return richTextField.emojies; }
set { richTextField.emojies = value; }
}
}
}