mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-21 16:00:32 +00:00
25 lines
334 B
C#
25 lines
334 B
C#
|
|
namespace YooAsset.Editor
|
|
{
|
|
/// <summary>
|
|
/// 启用分组
|
|
/// </summary>
|
|
public class EnableGroup : IActiveRule
|
|
{
|
|
public bool IsActiveGroup()
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 禁用分组
|
|
/// </summary>
|
|
public class DisableGroup : IActiveRule
|
|
{
|
|
public bool IsActiveGroup()
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
} |