浏览代码

Fixed controls property getter

/aisv647_visualizations
Steven Borkman 4 年前
当前提交
846aa744
共有 1 个文件被更改,包括 1 次插入7 次删除
  1. 8
      com.unity.perception/Runtime/GroundTruth/Labelers/Visualization/ControlPanel.cs

8
com.unity.perception/Runtime/GroundTruth/Labelers/Visualization/ControlPanel.cs


/// <summary>
/// Retrieves a list of the current controls in the control panel.
/// </summary>
public List<GameObject> controls
{
get
{
return m_Controls.ToList<GameObject>();
}
}
public IEnumerable<GameObject> controls => m_Controls;
/// <summary>
/// Adds a new UI control to the control panel. If the control cannot be added and the method will

正在加载...
取消
保存