This commit is contained in:
Xingwei Zhu 2022-05-07 15:55:10 +08:00
Родитель 143c558cd1
Коммит 78b128bdff
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -121,6 +121,10 @@ namespace Unity.UIWidgets.Editor {
return;
}
if (_wrapper.renderTexture == null) {
return;
}
EditorGUI.DrawPreviewTexture(new Rect(0.0f, 0.0f, width: position.width, height: position.height),
image: _wrapper.renderTexture, mat: _uiMaterial);
Input_OnGUIEvent(evt: Event.current);