Changeset 7210 for code/trunk
- Timestamp:
- Aug 24, 2010, 2:26:39 PM (14 years ago)
- Location:
- code/trunk
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/data/levels/tutorial.oxw
r7193 r7210 39 39 </events> 40 40 </CommandNotification> 41 42 <SimpleNotification message="Awesome!!!"> 43 <events> 44 <trigger> 45 <DistanceTrigger name=trigger position="0,0,100" distance=10 target="Pawn"> 46 <attached> 47 <Billboard position="0,0,0" colour="1.0,0,1.0" material="Examples/Flare" /> 48 </attached> 49 </DistanceTrigger> 50 </trigger> 51 </events> 52 </SimpleNotification> 41 53 42 54 <Drone name="meineDrohne" primarythrust="80" auxilarythrust="10" rotationthrust="10" mass= "50" linearDamping = "0.9" angularDamping = "0.7"> -
code/trunk/src/modules/notifications/NotificationsPrereqs.h
r7193 r7210 73 73 //dispatchers 74 74 class CommandNotification; 75 class SimpleNotification; 75 76 } 76 77 -
code/trunk/src/modules/notifications/dispatchers/CMakeLists.txt
r7193 r7210 1 1 ADD_SOURCE_FILES(NOTIFICATIONS_SRC_FILES 2 2 CommandNotification.cc 3 SimpleNotification.cc 3 4 ) -
code/trunk/src/modules/notifications/dispatchers/CommandNotification.h
r7193 r7210 56 56 virtual ~CommandNotification(); //!< Destructor. 57 57 58 virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); //!< Method for creating a NotificationDispatcherobject through XML.58 virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); //!< Method for creating a CommandNotification object through XML. 59 59 60 60 /**
Note: See TracChangeset
for help on using the changeset viewer.