我觉得有必要撸一遍,毕竟粘粘的
pulic class InitCustomAttributes{
pulic void Init()
{
assembly assembly=assembly.getassembly(typeof(bindprefab))//获取bindprefab所在程序集
type[] types=assembly.getexportedtypes();//获取所有类型
foreach(type type in types)
{
foreach(attribute attribute in type.getcustomattributes(type,true))//获取所有特性, true的意思shi
{
if(attribute is bindprefab){
bindprefab date=attribute as bindprefab;
}
}
}
}
}