公告板
版本库
filestore
活动
搜索
登录
main
/
snxxz_client
少年修仙传客户端基础资源
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
9527 新版sdk交互相关修改
lwb
2020-11-20
523a8c5b8de799aeaeaa7287f0b4f9e2edf339ee
[snxxz_client.git]
/
Assets
/
PostProcessing
/
Runtime
/
Attributes
/
MinAttribute.cs
1
2
3
4
5
6
7
8
9
10
11
12
namespace UnityEngine.PostProcessing
{
public sealed class MinAttribute : PropertyAttribute
{
public readonly float min;
public MinAttribute(float min)
{
this.min = min;
}
}
}