您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
15 行
434 B
15 行
434 B
using UnityEngine;
|
|
|
|
namespace UnityEngine.Perception.Randomization
|
|
{
|
|
/// <summary>
|
|
/// The base asset role class. Derive from <see cref="AssetRole{T}"/> instead to create a new asset role.
|
|
/// </summary>
|
|
public abstract class AssetRoleBase
|
|
{
|
|
/// <summary>
|
|
/// The string label uniquely associated with this asset role
|
|
/// </summary>
|
|
public abstract string label { get; }
|
|
}
|
|
}
|