Merge pull request #324 from Unity-Technologies/zxw/3d

refine editor side code
This commit is contained in:
Xingwei Zhu 2022-05-07 15:57:12 +08:00 коммит произвёл GitHub
Родитель 9518253ddf 78b128bdff
Коммит 338a4d3cf5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
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);