您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
20 行
535 B
20 行
535 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>
|
|
interface IAssetRoleBase
|
|
{
|
|
/// <summary>
|
|
/// The string label uniquely associated with this asset role
|
|
/// </summary>
|
|
string label { get; }
|
|
|
|
/// <summary>
|
|
/// A description for this asset role
|
|
/// </summary>
|
|
string description { get; }
|
|
}
|
|
}
|