您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
15 行
421 B
15 行
421 B
using Unity.Entities;
|
|
|
|
namespace UnityEngine.Perception.GroundTruth
|
|
{
|
|
/// <summary>
|
|
/// Information regarding a Labeling instance. Generated by <see cref="GroundTruthLabelSetupSystem"/>
|
|
/// </summary>
|
|
public struct GroundTruthInfo : IComponentData
|
|
{
|
|
/// <summary>
|
|
/// The instanceId assigned to the <see cref="Labeling"/>
|
|
/// </summary>
|
|
public uint instanceId;
|
|
}
|
|
}
|