Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 3 and Version 4 of code/doc/Trigger


Ignore:
Timestamp:
Aug 31, 2010, 11:35:50 PM (14 years ago)
Author:
dafrick
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • code/doc/Trigger

    v3 v4  
    22[[TracNav(TracNav/TOC_Development)]]
    33[[TOC]]
    4 ''This documentation refers to revision r2200 be aware that some things may have changed if your revision number differs too much.''
     4''This documentation refers to revision r7301 be aware that some things may have changed if your revision number differs too much.''
    55
    66Triggers are objects which react on certain events. You can combine triggers to use them as simple overlay logic in the levels. All triggers inherit from their main class Trigger and each implement a special functionality. The main class has no special functionality.
     
    1010At the beginning the Trigger is not triggered and not active.
    1111
    12 An extension of Triggers is the [[wiki:MultiTrigger]] class, which has a distinct state for each object that can trigger it.
     12An extension of Triggers is the [wiki:MultiTrigger] class, which has a distinct state for each object that can trigger it.
    1313
    1414== Basic Functionality ==
     
    8888
    8989== Event Trigger ==
    90 Coming soon...
     90
     91An event trigger is triggered by an event that comes in through its event interface.
     92
     93{{{
     94<EventTrigger>
     95    <events>
     96        <trigger>
     97            <EventListener ... />
     98            <DistanceTrigger ... />
     99        </trigger>
     100    </events
     101</EventTrigger>
     102}}}