Changeset 10299 in orxonox.OLD for branches/improvements/src/world_entities
- Timestamp:
- Jan 22, 2007, 4:33:30 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/improvements/src/world_entities/script_trigger.cc
r10287 r10299 188 188 if( !invert && this->distance(target) < radius) 189 189 { 190 // printf("Trigger position is: %f %f %f \n", this->getAbsCoor().x, this->getAbsCoor().y, this->getAbsCoor().z);191 // printf("Target position is: %f %f %f \n", this->target->getAbsCoor().x, this->target->getAbsCoor().y, this->target->getAbsCoor().z);192 190 executeAction(timestep); 193 191 scriptCalled = true; 194 192 return; 195 196 193 } 197 194 else if( invert && this->distance(target) > radius)
Note: See TracChangeset
for help on using the changeset viewer.