Changeset 8572 for code/branches/spacerace/src
- Timestamp:
- May 25, 2011, 6:08:06 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/spacerace/src/modules/objects/triggers/Trigger.cc
r7601 r8572 118 118 { 119 119 this->remainingTime_ -= dt; 120 // only increase when ac ctually waiting for a state in the queue120 // only increase when actually waiting for a state in the queue 121 121 if (this->timeSinceLastEvent_ >= 0.0) 122 122 this->timeSinceLastEvent_ += dt; … … 129 129 this->bTriggered_ = (newState & 0x1); 130 130 this->bActive_ = newState & 2; 131 COUT(4) << this->getIdentifier()->getName() << " '" << this->getName() << "' (&" << this << ") changed state. active: " << this->bActive_ << ", triggered: " << this->bTriggered_ << "." << std::endl; 131 132 this->triggered(this->bActive_); 132 133 this->stateChanges_.pop();
Note: See TracChangeset
for help on using the changeset viewer.