public void OnNotify (Playables.Playable origin, Playables.INotification notification, object context);

参数

origin发送通知的可播放项。
notification收到的通知。
context取决于通知类型的用户定义的数据。使用此参数可传递可能随每次调用而变化的必要信息。

描述

引发通知时调用的方法。

PlayableOutputExtensions.PushNotification 包含有关如何发送通知的示例。

using UnityEngine;
using UnityEngine.Playables;
class NotificationLogger : MonoBehaviour, INotificationReceiver
{
    public void OnNotify(Playable origin, INotification notification, object context)
    {
        Debug.Log(notification.id);
    }
}
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961