浏览代码

Fixed overlay panel bug (#134)

Fixed an issue where the overlay panel would display a full screen semi-transparent image over the entire screen when the overlay panel is disabled in the UI
/main
GitHub 4 年前
当前提交
105478ed
共有 2 个文件被更改,包括 3 次插入0 次删除
  1. 1
      com.unity.perception/CHANGELOG.md
  2. 2
      com.unity.perception/Runtime/GroundTruth/Labelers/Visualization/OverlayPanel.cs

1
com.unity.perception/CHANGELOG.md


### Fixed
Fixed an issue where the overlay panel would display a full screen semi-transparent image over the entire screen when the overlay panel is disabled in the UI
Fixed a bug in instance segmentation labeler that erroneously logged that object ID 255 was not supported
## [0.6.0-preview.1] - 2020-12-03

2
com.unity.perception/Runtime/GroundTruth/Labelers/Visualization/OverlayPanel.cs


}
}
m_OverlayImage.enabled = isEnabled;
// Clear out the handle to the cached overlay texture if we are not isEnabled
if (!isEnabled)
m_OverlayImage.texture = null;

正在加载...
取消
保存