关键词搜索

源码搜索 ×
×

Unity 如何通过反射给gameObject添加组件

发布2022-01-21浏览519次

详情内容

c#教程icon-default.png?t=M0H8https://www.jxasp.com/blog

这篇文章主要介绍了Unity 通过反射给gameObject添加组件的操作,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

C#版本

1

2

3

4

5

6

7

8

9

public static Component AddComponent(GameObject go, string assembly, string classname)

{

    var asmb = System.Reflection.Assembly.Load(assembly);

    var t = asmb.GetType(assembly + "." + classname);

    if(null != t)

        return go.AddComponent(t);

    else

        return null;

}

lua版本

1

2

3

4

5

6

7

8

9

function AddComponent(go, classname)

    local com = go:GetComponent(classname)

    if com then return com end

    local t = System.Type.GetType(classname)

    if t then

        return go:AddComponent(t)

    end

    return nil

end

补充:添加组件和删除组件代码unity

代码添加组件

1

gameObject.AddComponent ("FoobarScript");//最好使用类型方式,提交效率如typeof(Rigidbody)

注意没有RemoveComponent()方法。如果你想去掉一个组件,可以使用Object.Destroy。

添加组件和删除组件代码

1

2

3

4

5

IEnumerator   Start () {

    this.gameObject.AddComponent(typeof(Rigidbody));  

    yield return new WaitForSeconds(0.5F);  

    Destroy(this.rigidbody);

  }

以上为个人经验,希望能给大家一个参考
 

相关技术文章

点击QQ咨询
开通会员
返回顶部
×
微信扫码支付
微信扫码支付
确定支付下载
请使用微信描二维码支付
×

提示信息

×

选择支付方式

  • 微信支付
  • 支付宝付款
确定支付下载