Why choose UnityEvent over native C# events?

前端 未结 2 1975
攒了一身酷
攒了一身酷 2021-02-18 13:25

I mean, UnityEvents are slower than the native C# events and they still store a strong reference to the receivers. So, the only valid reason I can find to use UnityEvents over n

相关标签:
2条回答
  • 2021-02-18 13:38

    UnityEvent is mainly used with Unity UI system, because ugui need to serialize callbacks configuration in ui system, such as the button's OnClick callback.

    Serialization is a most important feature in unity game engine, with c# builtin event system, you can't do serialize.

    So if you work with unity UI System, you must use the UnityEvent, if you want to serialize callback function configuration, you must use the UnityEvent.

    In other situation, just use the c# builtin event.

    0 讨论(0)
  • 2021-02-18 13:39

    Am I overlooking something?

    Nope, you are not overlooking anything. The only advantage and reason to use UnityEvent is that it allows you to use events in the Editor. That's for drag and drop people or those making Editor plugins.

    Another advantage of UnityEvent is that it prevents the problem of Unity Object not being freed due to the misuse of delegates or using anonymous delegates with Unity Objects. Although they get freed when the main script that's holding them is destroyed. The reason for this is because UnityEvent is implemented with weak references therefore removing/minimizing this problem. These two things are still not worth it to use UnityEvent over native C# events.

    You should always use native event and delegate over UnityEvent if you are not making an Editor plugin because of its fast performance and small memory usage. See this and this post post for more information.

    0 讨论(0)
提交回复
热议问题