Click or drag to resize

NotificationMode Enumeration

[This is preliminary documentation and is subject to change.]

Specifies the ways in which pooling notifications can be sent to MonoBehaviour components.

Namespace:  Umbrace.Unity.PurePool
Assembly:  Umbrace.Unity.PurePool (in Umbrace.Unity.PurePool.dll) Version: 0.0.0.0 (1.0.0.0)
Syntax
C#
[FlagsAttribute]
public enum NotificationMode
Members
  Member nameValueDescription
Interface1 A custom interface that is applied to any components that need to respond to the notification.
SendMessage2 The built-in Unity messaging system that sends notifications using the SendMessage(String) method.
UnityMessagingInterface4 The built-in Unity messaging system that sends notifications using the ExecuteEvents class, using an interface applied to any components that need to respond to the notification.
See Also