当前位置:   article > 正文

Unity中GetComponent的用法_unity getcomponent

unity getcomponent

教程地址(观看视频需翻墙):

https://learn.unity.com/tutorial/getcomponent?language=en&courseId=5c61706dedbc2a324a9b022d&projectId=5c8920b4edbc2a113b6bc26a#5c8a65d5edbc2a001f47d6e6

教程代码实例:
 

UsingOtherComponents


using UnityEngine;
using System.Collections;

public class UsingOtherComponents : MonoBehaviour
{
    public GameObject otherGameObject;
    
    private AnotherScript anotherScript;
    private YetAnotherScript yetAnotherScript;
    private BoxCollider boxCol;
    
    //使用Awake减少开销
    void Awake ()
    {
        anotherScript = GetComponent<AnotherScript>();   
       

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/125582
推荐阅读
相关标签
  

闽ICP备14008679号