猴子原创,欢迎转载。转载请注明: 转载自Cocos2Der-CSDN,谢谢!

原文地址: http://blog.csdn.net/cocos2der/article/details/46539433

Delegate作用我就不多说了,Unity中可以直接使用EventHandler实现事件委托,咱们直接事例吧。

一、场景物体移动结束后事件监听

假如PlayerControl,移动结束后触发MoveComplete事件。

using UnityEngine;
using System.Collections;
using System;

public class PlayerControl : MonoBehaviour {

    public event EventHandler MoveComplete;

    // Use this for initialization
    void Start () {

    }

    // Update is called once per frame
    void Update () {
        if (Input.GetMouseButtonUp(0)) {
            // Test logic for PlayerMoveComplete
            PlayerMoveComplete();
        }
    }

    void PlayerMoveComplete()
    {
        if (MoveComplete != null) {
            MoveComplete(this, EventArgs.Empty);
        }
    }
}

事件接收处理

using UnityEngine;
using System.Collections;
using System;

public class GameManager : MonoBehaviour {
    public static GameManager Instance;
    public PlayerControl playerControl;

    void Awake ()
    {
        // check there isn't more than one instance of the GameManager in the scene
        if(Instance != null){
            Debug.LogError("More than one GameManager found in the scene");
            return;
        }
        // set the global instance
        Instance = this;
    }

    // Use this for initialization
    void Start () {
        playerControl.MoveComplete += HandleMoveComplete;
    }

    void HandleMoveComplete (object sender, EventArgs e)
    {
        Debug.Log("MoveComplete:");
    }

    // Update is called once per frame
    void Update () {

    }
}

这里由于使用的EventHandler实现,所以在事件中无法传递自定义参数。

二、自定义Event,事件中传递自定义参数

1、自定义EventArgs

using UnityEngine;
using System.Collections;
using System;

public class PlayerMoveEventArgs : EventArgs {

    private string message;

    public PlayerMoveEventArgs(string message)
    {
        this.message = message;
    }

    public string Message
    {
        get{return message;}
    }

}

public delegate void MoveCompleteHandle(object sender, PlayerMoveEventArgs e);

那么我们修改下PlayerControl

using UnityEngine;
using System.Collections;
using System;

public class PlayerControl : MonoBehaviour {

    public event EventHandler MoveComplete;

    public event MoveCompleteHandle CustomMoveComplete;

    // Use this for initialization
    void Start () {

    }

    // Update is called once per frame
    void Update () {
        if (Input.GetMouseButtonUp(0)) {
            // Test logic for PlayerMoveComplete
            PlayerMoveComplete();
        }
    }

    void PlayerMoveComplete()
    {
        if (MoveComplete != null) {
            MoveComplete(this, EventArgs.Empty);
        }

        if (CustomMoveComplete != null) {
            CustomMoveComplete(this, new PlayerMoveEventArgs("Move:" + this.name));
        }
    }
}

处理事件的我们也修改下

using UnityEngine;
using System.Collections;
using System;

public class GameManager : MonoBehaviour {
    public static GameManager Instance;
    public PlayerControl playerControl;

    void Awake ()
    {
        // check there isn't more than one instance of the GameManager in the scene
        if(Instance != null){
            Debug.LogError("More than one GameManager found in the scene");
            return;
        }
        // set the global instance
        Instance = this;
    }

    // Use this for initialization
    void Start () {
        playerControl.MoveComplete += HandleMoveComplete;

        playerControl.CustomMoveComplete += HandleCustomMoveComplete;
    }

    void HandleCustomMoveComplete (object sender, PlayerMoveEventArgs e)
    {
        Debug.Log("HandleCustomMoveComplete:" + e.Message);
    }

    void HandleMoveComplete (object sender, EventArgs e)
    {
        Debug.Log("MoveComplete:");
    }

    // Update is called once per frame
    void Update () {

    }
}

ok,现在你可以自由的玩耍了。

事件/委托机制(event/delegate)(Unity3D开发之十七)的更多相关文章

  1. 【Unity3D技巧】在Unity中使用事件/委托机制(event/delegate)进行GameObject之间的通信 (二) : 引入中间层NotificationCenter

    作者:王选易,出处:http://www.cnblogs.com/neverdie/ 欢迎转载,也请保留这段声明.如果你喜欢这篇文章,请点[推荐].谢谢! 一对多的观察者模式机制有什么缺点? 想要查看 ...

  2. C++模拟C#事件委托机制(一)

    原文来自于http://www.cnblogs.com/netssfy/articles/1652671.html 写了一段时间的C#代码后确实发现C#的事件委托非常好用.于是便想是否在C++中也能如 ...

  3. Javascript事件模型系列(二)事件的捕获-冒泡机制及事件委托机制

    一.事件的捕获与冒泡 由W3C规定的DOM2标准中,一次事件的完整过程包括三步:捕获→执行目标元素的监听函数→冒泡,在捕获和冒泡阶段,会依次检查途径的每个节点,如果该节点注册了相应的监听函数,则执行监 ...

  4. JavaScript 之默认行为 DOM2级,事件委托机制

    1. 事件默认行为及阻止方式    1.1 浏览器的默认行为       JavaScript事件本身所具有的属性,例如a标签的跳转,Submit按钮的提交,右键菜单,文本框的输入等.    1.2 ...

  5. 一篇文章图文并茂地带你轻松学完 JavaScript 事件循环机制(event loop)

    JavaScript 事件循环机制 (event loop) 本篇文章已经默认你有了基础的 ES6 和 javascript语法 知识. 本篇文章比较细致,如果已经对同步异步,单线程等概念比较熟悉的读 ...

  6. 转载: jQuery事件委托( bind() \ live() \ delegate()) [委托 和 绑定的故事]

    转载:http://blog.csdn.net/zc2087/article/details/7287429 随着DOM结构的复杂化和Ajax等动态脚本技术的运用,事件委托自然浮出了水面.jQuery ...

  7. javascript事件委托机制详解

    以个人前端工作面试经历来看,javascript事件委托是问的最多的一类题目之一,熟悉事件委托能够了解你对于javascript的掌握程度. 面试官可能问一下问题,现在有5个li待办事件,需要实现当点 ...

  8. JS与Jquery的事件委托机制

    传送:http://www.ituring.com.cn/article/467 概念: 什么是事件委托:通俗的讲,事件就是onclick,onmouseover,onmouseout,等就是事件,委 ...

  9. js的事件委托机制

    如今的JavaScript技术界里最火热的一项技术应该是‘事件委托(event delegation)’了.使用事件委托技术能让你避免对特定的每个节点添加事件监听器:相反,事件监听器是被添加到它们的父 ...

随机推荐

  1. 一个貌似比较吊的递归转换为loop--总算成功了.

    class Stack(object): """ A class to hold arguements and state data. """ ...

  2. Linux telnet远程登录操作

    telnet  (如果不行 可以却换root帐户试试 su - root) 1.安装telnet-server     sudo dpkg -i xinetd_1%3a2.3.14-7ubuntu3_ ...

  3. 小小聊天室 Python实现

    相对于Java方式的聊天室,Python同样可以做得到.而且可以做的更加的优雅.想必少了那么多的各种流的Python Socket,你一定会喜欢的. 至于知识点相关的内容,这里就不多说了. UDP方式 ...

  4. Gazebo機器人仿真學習探索筆記(一)安裝與使用

    Gazebo提供了多平臺的安裝和使用支持,大部分主流的linux,Mac以及Windows,這裏結合ROS以Ubuntu爲例進行介紹. 首先是參考資料:http://gazebosim.org/tut ...

  5. 2.QT中使用资源文件,程序打包

     1 程序中使用资源文件 A  一个QT空项目 B  右击项目,添加新文件 添加后的效果是 C  右击main.prc,选择"添加现有项",找到要使用的资源文件.最终的效果是: ...

  6. 最简单的基于libVLC的例子:最简单的基于libVLC的推流器

    ===================================================== 最简单的基于libVLC的例子文章列表: 最简单的基于libVLC的例子:最简单的基于lib ...

  7. 漫谈android系统(4)bring up panel

    点击打开链接 版权声明: 作者:alex wang 版权:本文版权归作者和CSDN共有 转载:欢迎转载,为了保存作者的创作热情,请按要求[转载],谢谢 要求:未经作者同意,必须保留此段声明:必须在文章 ...

  8. 使用Python做简单的字符串匹配

    由于需要在半结构化的文本数据中提取一些特定格式的字段.数据辅助挖掘分析工作,以往都是使用Matlab工具进行结构化数据处理的建模,matlab擅长矩阵处理.结构化数据的计算,Python具有与matl ...

  9. 基于MSRDS机器人仿真平台的多机器人PID编队控制算法

    自己调试的编队PID算法,效果也还可以,具体使用教程参考视频链接: http://v.youku.com/v_show/id_XMTUwNjc3NjMyNA 仿真中三个机器人保持编队,做直线运动,队形 ...

  10. Oracle PL/SQL Articles

    我是搬运工....http://www.oracle-base.com/articles/plsql/articles-plsql.php Oracle 8i Oracle 9i Oracle 10g ...