浏览代码

port forceUpdate to EditorWindow

/dev_k12
xingwei.zhu 4 年前
当前提交
dc7e6275
共有 1 个文件被更改,包括 9 次插入0 次删除
  1. 9
      com.unity.uiwidgets/Runtime/editor/editor_window.cs

9
com.unity.uiwidgets/Runtime/editor/editor_window.cs


public Window window {
get { return this._windowAdapter; }
}
public void forceUpdate() {
Widget root;
using (this._windowAdapter.getScope()) {
root = this.createWidget();
}
this._windowAdapter.attachRootWidget(root);
}
}
public class EditorWindowAdapter : WindowAdapter {

正在加载...
取消
保存