Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 4 and Version 5 of code/doc/Notifications


Ignore:
Timestamp:
Aug 24, 2010, 2:28:11 PM (14 years ago)
Author:
dafrick
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • code/doc/Notifications

    v4 v5  
    4242=== NotificationOverlay ===
    4343The NotificationOverlay is the one actually displaying the Notifications.
     44
     45=== NotificationDispatcher ===
     46The NotificationDispatcher is an entity that upon being triggered dispatches (displays) some defined Notification. The NotificationDispatcher class is just an interface for various forms of NotificationDispatchers. The simples of which (hence the name) would be the SimpleNotification:
     47
     48{{{
     49<SimpleNotification message="Awesome notification message.">
     50    <events>
     51        <trigger>
     52            <DistanceTrigger name=trigger position="0,0,100" distance=10 target="Pawn" />
     53        </trigger>
     54    </events>
     55</SimpleNotification>
     56}}}