Changes between Version 3 and Version 4 of code/doc/Trigger
- Timestamp:
- Aug 31, 2010, 11:35:50 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
code/doc/Trigger
v3 v4 2 2 [[TracNav(TracNav/TOC_Development)]] 3 3 [[TOC]] 4 ''This documentation refers to revision r 2200be 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.'' 5 5 6 6 Triggers 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. … … 10 10 At the beginning the Trigger is not triggered and not active. 11 11 12 An extension of Triggers is the [ [wiki:MultiTrigger]] class, which has a distinct state for each object that can trigger it.12 An extension of Triggers is the [wiki:MultiTrigger] class, which has a distinct state for each object that can trigger it. 13 13 14 14 == Basic Functionality == … … 88 88 89 89 == Event Trigger == 90 Coming soon... 90 91 An 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 }}}