您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
24 行
789 B
24 行
789 B
using System;
|
|
|
|
namespace UnityEngine.Experimental.Perception.Randomization.Randomizers
|
|
{
|
|
/// <summary>
|
|
/// The AddRandomizerMenu attribute allows you to organize randomizers under different menu paths
|
|
/// </summary>
|
|
public class AddRandomizerMenuAttribute : Attribute
|
|
{
|
|
/// <summary>
|
|
/// The assigned randomizer menu path. Path directories should be separated using forward slash characters.
|
|
/// </summary>
|
|
public string menuPath;
|
|
|
|
/// <summary>
|
|
/// Add a randomizer to the AddRandomizerMenus
|
|
/// </summary>
|
|
/// <param name="menuPath">The assigned randomizer menu path</param>
|
|
public AddRandomizerMenuAttribute(string menuPath)
|
|
{
|
|
this.menuPath = menuPath;
|
|
}
|
|
}
|
|
}
|