浏览代码

[Fix] Gradient Text

/main
iizzaya 5 年前
当前提交
3147bcfd
共有 1 个文件被更改,包括 7 次插入1 次删除
  1. 8
      Runtime/ui/txt/paragraph.cs

8
Runtime/ui/txt/paragraph.cs


filterMode = FilterMode.Bilinear
};
Paint _defaultPaint = new Paint {
filterMode = FilterMode.Bilinear
};
public void paint(Canvas canvas, Offset offset) {
for (int i = 0; i < this._paintRecordsCount; i++) {
var paintRecord = this._paintRecords[i];

if (paintRecord.style.foreground != null) {
this._textPaint = paintRecord.style.foreground;
} else {
}
else {
this._textPaint = this._defaultPaint;
this._textPaint.color = paintRecord.style.color;
}

正在加载...
取消
保存