unity 用代码 给物体添加组件,脚本

Unity5.x以前
创建一个对象并且给它添加脚本和组件
gameObject.AddComponent ();//添加刚体
gameObject.AddComponent ();//添加碰撞器
gameObject.AddComponent ();//添加脚本

Unity 2017.x之后
方式一
SphereCollider sc = gameObject.AddComponent(typeof(SphereCollider)) as SphereCollider;
方式二
SphereCollider sc = gameObject.AddComponent() as SphereCollider;

你可能感兴趣的:(unity)