BroadcastMessage/SendMessage/SendMessageUpwards
方法名 | 描述 | 功能 |
---|---|---|
BroadcastMessage | 广播消息 | 调用自身或者任何子类,继承自MonoBehaviour的所有脚本中的名为methodName的方法。 |
SendMessage | 发送消息 | 调用自身继承自MonoBehaviour的所有脚本中的名为methodName的方法。 |
SendMessageUpwards | 向上发送消息 | 调用自身或者所有父类,继承自MonoBehaviour的所有脚本中的名为methodName的方法。 |
实例
void Start ()
{
//methodName 方法名可以自定义
//广播消息
gameObject.BroadcastMessage(“ methodName”);
//发送消息
gameObject.SendMessage(“ methodName”);
//向上发送消息
gameObject.SendMessageUpwards(“ methodName”);
}
//methodName方法
public void methodName()
{
Debug.LogError("888888888888888");
}
网友评论