Changeset 8466 for code/branches/portals2/src/modules
- Timestamp:
- May 12, 2011, 4:15:36 PM (13 years ago)
- Location:
- code/branches/portals2/src/modules/portals
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/portals2/src/modules/portals/PortalEndPoint.cc
r8457 r8466 32 32 XMLPortParam(PortalEndPoint, "id", setID, getID, xmlelement, mode); 33 33 XMLPortParam(PortalEndPoint, "design", setTemplate, getTemplate, xmlelement, mode); 34 XMLPortParamExtern(PortalEndPoint, DistanceMultiTrigger, this->trigger_, "distance", setDistance, getDistance, xmlelement, mode) ;34 XMLPortParamExtern(PortalEndPoint, DistanceMultiTrigger, this->trigger_, "distance", setDistance, getDistance, xmlelement, mode).defaultValues("50"); 35 35 XMLPortParamLoadOnly(PortalEndPoint, "target", setTarget, xmlelement, mode).defaultValues("Pawn"); 36 36 -
code/branches/portals2/src/modules/portals/PortalEndPoint.h
r8457 r8466 1 /** 2 * @file PortalEndPoint.h 3 * @brief Declaration of the PortalEndPoint class. 4 * @ingroup Portals 5 */ 6 1 7 #ifndef _PortalEndPoint_H__ 2 8 #define _PortalEndPoint_H__ … … 15 21 namespace orxonox 16 22 { 23 /** 24 @brief 25 A PortalEndPoint serves as portal entrance and/or exit. 26 27 @ingroup Portals 28 */ 29 17 30 class _PortalsExport PortalEndPoint : public StaticEntity 18 31 { -
code/branches/portals2/src/modules/portals/PortalLink.h
r8457 r8466 1 /** 2 @file PortalLink.h 3 @brief Declaration of the PortalLink class 4 @ingroup Portals 5 */ 6 1 7 #ifndef _PortalLink_H__ 2 8 #define _PortalLink_H__ … … 12 18 namespace orxonox 13 19 { 20 /** 21 @brief 22 A PortalLink represents the connection between two @ref orxonox::PortalEndPoint "PortalEndPoints" 23 @ingroup Portals 24 */ 14 25 class _PortalsExport PortalLink : public BaseObject 15 26 {
Note: See TracChangeset
for help on using the changeset viewer.