《Unity API常用方法和类详细讲解—Siki学院》课程学习笔记02
课时10 GameObject、Component和Object的千丝万缕的关系
一个游戏由多个场景组成,一个场景由多个游戏物体(GameObject)组成,一个游戏物体由多个组件组成(Component);
组件:Transform, Rigidboy, MeshRender, MeshFilter, Collider, NavmeshAgent, Animation, Animator,自定义脚本(Script)
课时11-12 UnityEngine下Object的静态方法以及GameObject独有的静态方法
Destroy():可以销毁游戏物体和组件;
DontDestroyOnLoad(gameobject):设置共享的游戏物体,重新调整场景时不会销毁;
FindObjectOfType()根据类型获取组件;
FindObjectsOfType()根据类型返回组件数组;
GameObject.Find(“Main Camera”);根据名称获得主相机;
GameObject.FindGameObjectsWithTag(“Main Camera”);根据标签获得主相机;
课时13 游戏物体间消息的发送和接收
(1)GameObject.BroadcastMessage(string methodName, object parameter = null, SendMessageOptions options = SendMessageOptions.RequireReceiver); //发送该节点的所有子节点
(2)GameObject.SendMessage(string methodName, object value = null, SendMessageOptions options = SendMessageOptions.RequireReceiver); //发送给物体本身
(3)GameObject.SendMessageUpwards(string methodName, object value = null, SendMessageOptions options = SendMessageOptions.RequireReceiver); //发送给其所有父节点
课时14得到组件各种方法函数:
GetComponent<组件类型>();
GetCompoents<组件类型>();
GetCompoentsInChilren<组件类型>();
GetComponentsInChildren<组件类型>();
GetComponentInParent<组件类型>();
GetCompoentsInParent<组件类型>();
课时15-17MonoBehavior部分总结
(1)得到组件的各种方法函数
GetComponent;只会得到在游戏物体身上的第一个检测到的组件
GetComponent;会得到物体上所有的组件
GetComponentInChildren;会得到其自身及其子物体身上第一个检测到的相应的组件
GetComponentInParent;会得到其自身及其父物体身上第一个检测到的相应的组件
GetComponentsInChildren;会得到其自身及其子物体身上所有检测到的相应的组件
GetComponentsInParent;会得到其自身及其父物体身上所有检测到的相应的组件
(2)公共函数
Public void Invoke(string methodName,float time );延时调用函数
CancelInvoke;取消所有调用的函数(仅适用于当前脚本)
InvokeRepeating;重复调用函数
(3)Invoke的使用详解
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class API07Invock : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
// Invoke("Attack",3);
InvokeRepeating("Attack",3,5);
CancelInvoke();
}
// Update is called once per frame
void Update()
{
bool res=IsInvoking("Attack");
print(res);
}
void Attack()
{
print("开始攻击");
}
}
来源:CSDN
作者:黄黄的妖精大人�
链接:https://blog.csdn.net/weixin_45036106/article/details/104578272