您当前的位置: 首页 >  unity

云小川

暂无认证

  • 4浏览

    0关注

    78博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

Unity 事件 UnityEvent的使用方法

云小川 发布时间:2022-09-19 18:13:51 ,浏览量:4

1.无参数的UnityEvent 

using UnityEngine;
using UnityEngine.Events;
using System.Collections;
 
public class ExampleClass : MonoBehaviour
{
    UnityEvent m_MyEvent;
 
    void Start()
    {
        if (m_MyEvent == null)
            m_MyEvent = new UnityEvent();
 
        m_MyEvent.AddListener(Ping);
    }
 
    void Update()
    {
        if (Input.anyKeyDown && m_MyEvent != null)
        {
            m_MyEvent.Invoke();
        }
    }
 
    void Ping()
    {
        Debug.Log("Ping");
    }
}

2.带有一个参数的UnityEvent 

using UnityEngine;
using UnityEngine.Events;
 
[System.Serializable]
public class MyIntEvent : UnityEvent
{
}
 
public class ExampleClass : MonoBehaviour
{
    public MyIntEvent m_MyEvent;
 
    void Start()
    {
        if (m_MyEvent == null)
            m_MyEvent = new MyIntEvent();
 
        m_MyEvent.AddListener(Ping);
    }
 
    void Update()
    {
        if (Input.anyKeyDown && m_MyEvent != null)
        {
            m_MyEvent.Invoke(5);
        }
    }
 
    void Ping(int i)
    {
        Debug.Log("Ping" + i);
    }
}

3.四个参数

using UnityEngine;
using UnityEngine.Events;
 
 
[System.Serializable]
public class MyIntEvent : UnityEvent
{
}
 
public class ExampleClass : MonoBehaviour
{
    public MyIntEvent m_MyEvent;
 
    void Start()
    {
        if (m_MyEvent == null)
            m_MyEvent = new MyIntEvent();
 
        m_MyEvent.AddListener(Ping);
    }
 
    void Update()
    {
        if (Input.anyKeyDown && m_MyEvent != null)
        {
            m_MyEvent.Invoke(5, 6, 7, 8);
        }
    }
 
    void Ping(int i, int j, int k, int l)
    {
        Debug.Log("Ping" + i + j + k + l);
    }
}

4.Action 用法

  Action QYaction;
 public  void OnQYSX(string s,Action action)
    {
        QYaction = action;//赋值给宁一个Action
       //action.Invoke(s);
        OnOpenQYSX(s);
    }
 private void OnQYName(string s)
    {
        QYaction.Invoke(s);
    }

关注
打赏
1663746399
查看更多评论
立即登录/注册

微信扫码登录

0.0355s