浏览代码

Fix njk.

/main
Yuncong Zhang 6 年前
当前提交
23685456
共有 2 个文件被更改,包括 4 次插入5 次删除
  1. 1
      Runtime/rendering/box.mixin.gen.cs
  2. 8
      Runtime/rendering/proxy_box.mixin.njk

1
Runtime/rendering/box.mixin.gen.cs


using System;
using System.Collections.Generic;
using Unity.UIWidgets.gestures;
using Unity.UIWidgets.ui;

8
Runtime/rendering/proxy_box.mixin.njk


return this.child.getMinIntrinsicWidth(height);
}
return 0.0;
return 0.0f;
}
protected override float computeMaxIntrinsicWidth(float height) {

return 0.0;
return 0.0f;
}
protected override float computeMinIntrinsicHeight(float width) {

return 0.0;
return 0.0f;
}
protected override float computeMaxIntrinsicHeight(float width) {

return 0.0;
return 0.0f;
}
protected override float? computeDistanceToActualBaseline(TextBaseline baseline) {

正在加载...
取消
保存