浏览代码

revert all reverts and fix the merge issue

/siyaoH-1.17-PlatformMessage
xingweizhu 4 年前
当前提交
8331c582
共有 1 个文件被更改,包括 0 次插入17 次删除
  1. 17
      com.unity.uiwidgets/Runtime/foundation/diagnostics.cs

17
com.unity.uiwidgets/Runtime/foundation/diagnostics.cs


return (foundation_._isSingleLine(childStyle) || childStyle == DiagnosticsTreeStyle.errorProperty)
? textStyle
: child.textTreeConfiguration;
public static DiagnosticsNode message(
string message,
DiagnosticsTreeStyle style = DiagnosticsTreeStyle.singleLine,
DiagnosticLevel level = DiagnosticLevel.info,
bool allowWrap = true
) {
D.assert(style != null);
D.assert(level != null);
return new DiagnosticsProperty<object>(
"",
null,
description: message,
style: style,
showName: false,
level: level
);
}
public string render(

正在加载...
取消
保存