dashboard
repositories
filestore
activity
search
login
main
/
GemBattle
宝石塔防
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
简单修改新手引导
wangguan
2020-10-27
f79f61b93d8061d89dde18063526e417ffc409d2
[GemBattle.git]
/
Assets
/
PostProcessing
/
Runtime
/
Attributes
/
TrackballAttribute.cs
1
2
3
4
5
6
7
8
9
10
11
12
namespace UnityEngine.PostProcessing
{
public sealed class TrackballAttribute : PropertyAttribute
{
public readonly string method;
public TrackballAttribute(string method)
{
this.method = method;
}
}
}