Changeset 7297 for code/branches/doc/src/modules/pickup
- Timestamp:
- Aug 31, 2010, 8:37:29 PM (14 years ago)
- Location:
- code/branches/doc/src/modules/pickup
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/doc/src/modules/pickup/DroppedPickup.cc
r7163 r7297 61 61 @param pickup 62 62 The Pickupable that was dropped. 63 @param position64 The position at which the DroppedPickup should be created.63 @param carrier 64 FIXME - add doc! 65 65 @param triggerDistance 66 66 The distance at which the PickupSpawner triggers. Default is 10. -
code/branches/doc/src/modules/pickup/Pickup.cc
r7208 r7297 225 225 This method must be implemented by any class directly inheriting from Pickupable. It is most easily done by just creating a new DroppedPickup, e.g.: 226 226 DroppedPickup(BaseObject* creator, Pickupable* pickup, const Vector3& position); 227 @param position228 The position at which the PickupSpawner should be placed.229 227 @return 230 228 Returns true if a spawner was created, false if not. -
code/branches/doc/src/modules/pickup/PickupCollection.cc
r7163 r7297 228 228 @brief 229 229 Get whether a given class, represented by the input Identifier, is a target of this PickupCollection. 230 @param identifier231 A pointer to the Pickup Identifier of the PickupCarrier we want to know of, whether it is a target of this PickupCollection.230 @param carrier 231 A pointer to the PickupCarrier we want to know of, whether it is a target of this PickupCollection. 232 232 @return 233 233 Returns true if the PickupCarrier identified by the input PickupIdentififer it is a target of this PickupCollection, false if not. … … 336 336 This method must be implemented by any class directly inheriting from Pickupable. It is most easily done by just creating a new DroppedPickup, e.g.: 337 337 DroppedPickup(BaseObject* creator, Pickupable* pickup, const Vector3& position); 338 @param position339 The position at which the PickupSpawner should be placed.340 338 @return 341 339 Returns true if a spawner was created, false if not. -
code/branches/doc/src/modules/pickup/PickupCollectionIdentifier.cc
r7163 r7297 99 99 @brief 100 100 Add a Pickupable to the PickupCollectionIdentifier. 101 @param 101 @param identifier 102 102 A pointer to the PickupIdentifier of the Pickupable to be added. 103 103 */ -
code/branches/doc/src/modules/pickup/PickupSpawner.cc
r7163 r7297 70 70 @param respawnTime 71 71 The minimum time between two spawns. 72 @param ma ySpawnedItems72 @param maxSpawnedItems 73 73 The maximum number of items spawned by this PickupSpawner. 74 74 */ -
code/branches/doc/src/modules/pickup/items/SpeedPickup.cc
r7208 r7297 252 252 @brief 253 253 Sets the SpeedMultiply 254 @param speed Add254 @param speedMultiply 255 255 The multiplied Speed 256 256 */
Note: See TracChangeset
for help on using the changeset viewer.