GameObject.GetComponent 获取组件
function GetComponent (type : Type) : Component
Description描述
Returns the component of Type type if the game object has one attached, null if it doesn't. You can access both builtin components or scripts with this function.
如果这个游戏物体包含一个类型为type的组件,则返回它。如果没有则为空。通过这个函数,你可以访问内建的组件或者脚本的组件。
GetComponent is the primary way of accessing other components. From javascript the type of a script is always the name of the script as seen in the project view.
GetComponent是访问别的组件的原始方法,对javascript来说,脚本的类型就是项目视图里面看到的脚本名称。
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
void Start() {
Transform curTransform;
curTransform = gameObject.GetComponent();
curTransform = gameObject.transform;
}
void Update() {
本文介绍了Unity中获取游戏对象组件的关键方法GetComponent,包括如何通过Type和字符串来访问内置组件或脚本组件。示例代码展示了在Start和Update函数中如何使用GetComponent来获取并操作Transform和自定义脚本组件。
最低0.47元/天 解锁文章
149

被折叠的 条评论
为什么被折叠?



