浏览代码

updated xml docs

/main
Steven Leal 4 年前
当前提交
d2fdb207
共有 3 个文件被更改,包括 5 次插入0 次删除
  1. 1
      com.unity.perception/Runtime/Randomization/Randomizers/RandomizerExamples/Randomizers/BackgroundObjectPlacementRandomizer.cs
  2. 1
      com.unity.perception/Runtime/Randomization/Randomizers/RandomizerExamples/Randomizers/ForegroundObjectPlacementRandomizer.cs
  3. 3
      com.unity.perception/Runtime/Randomization/Randomizers/RandomizerTagManager.cs

1
com.unity.perception/Runtime/Randomization/Randomizers/RandomizerExamples/Randomizers/BackgroundObjectPlacementRandomizer.cs


GameObject m_Container;
GameObjectOneWayCache m_GameObjectOneWayCache;
/// <inheritdoc/>
protected override void OnCreate()
{
m_Container = new GameObject("BackgroundContainer");

1
com.unity.perception/Runtime/Randomization/Randomizers/RandomizerExamples/Randomizers/ForegroundObjectPlacementRandomizer.cs


GameObject m_Container;
GameObjectOneWayCache m_GameObjectOneWayCache;
/// <inheritdoc/>
protected override void OnCreate()
{
m_Container = new GameObject("Foreground Objects");

3
com.unity.perception/Runtime/Randomization/Randomizers/RandomizerTagManager.cs


/// </summary>
public class RandomizerTagManager
{
/// <summary>
/// Returns the singleton RandomizerTagManager instance
/// </summary>
public static RandomizerTagManager singleton { get; } = new RandomizerTagManager();
Dictionary<Type, HashSet<Type>> m_TypeTree = new Dictionary<Type, HashSet<Type>>();

正在加载...
取消
保存