浏览代码

Merge pull request #182 from Unity-Technologies/perception-add-component-menu

Perception add component menu update
/main
GitHub 4 年前
当前提交
92754d50
共有 4 个文件被更改,包括 5 次插入1 次删除
  1. 2
      com.unity.perception/CHANGELOG.md
  2. 1
      com.unity.perception/Runtime/GroundTruth/Labelers/JointLabel.cs
  3. 1
      com.unity.perception/Runtime/GroundTruth/Labeling/Labeling.cs
  4. 2
      com.unity.perception/Runtime/Randomization/Scenarios/FixedLengthScenario.cs

2
com.unity.perception/CHANGELOG.md


The uniform toggle on Categorical Parameters will now reset the Parameter's probability weights to be uniform.
Reorganized Perception MonoBehaviour paths within the AddComponentMenu.
### Deprecated
### Removed

1
com.unity.perception/Runtime/GroundTruth/Labelers/JointLabel.cs


/// Label to designate a custom joint/keypoint. These are needed to add body
/// parts to a humanoid model that are not contained in its <see cref="Animator"/> <see cref="Avatar"/>
/// </summary>
[AddComponentMenu("Perception/Labeling/Joint Label")]
public class JointLabel : MonoBehaviour
{
/// <summary>

1
com.unity.perception/Runtime/GroundTruth/Labeling/Labeling.cs


/// <summary>
/// Defines a set of labels associated with the object and its descendants. A Labeling component will override any Labeling components on the object's ancestors.
/// </summary>
[AddComponentMenu("Perception/Labeling/Labeling")]
public class Labeling : MonoBehaviour
{
/// <summary>

2
com.unity.perception/Runtime/Randomization/Scenarios/FixedLengthScenario.cs


/// <summary>
/// A scenario that runs for a fixed number of frames during each iteration
/// </summary>
[AddComponentMenu("Perception/Randomization/Scenarios/Fixed Length Scenario")]
[AddComponentMenu("Perception/Scenarios/Fixed Length Scenario")]
[MovedFrom("UnityEngine.Experimental.Perception.Randomization.Scenarios")]
public class FixedLengthScenario: UnitySimulationScenario<FixedLengthScenario.Constants>
{

正在加载...
取消
保存