Changeset 8809 for code/branches/output/src/orxonox/collisionshapes
- Timestamp:
- Aug 1, 2011, 4:37:38 PM (13 years ago)
- Location:
- code/branches/output/src/orxonox/collisionshapes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/output/src/orxonox/collisionshapes/CollisionShape.cc
r8706 r8809 203 203 if(scale_.crossProduct(scale).squaredLength() != 0.0f) 204 204 { 205 CCOUT(2) << "Warning:Non-uniform scaling is not yet supported." << endl;205 orxout(internal_warning) << "Non-uniform scaling is not yet supported." << endl; 206 206 return; 207 207 } -
code/branches/output/src/orxonox/collisionshapes/CompoundCollisionShape.cc
r8706 r8809 98 98 if (this->attachedShapes_.find(shape) != this->attachedShapes_.end()) 99 99 { 100 CCOUT(2) << "Warning: Attaching a CollisionShape twice is not yet supported." << std::endl;100 orxout(internal_warning) << "Attaching a CollisionShape twice is not yet supported." << endl; 101 101 return; 102 102 } … … 139 139 } 140 140 else 141 CCOUT(2) << "Warning: Cannot detach non child collision shape" << std::endl;141 orxout(internal_warning) << "Cannot detach non child collision shape" << endl; 142 142 } 143 143 … … 168 168 if (it == this->attachedShapes_.end()) 169 169 { 170 CCOUT(2) << "Warning: Cannot update child shape: Instance not a child." << std::endl;170 orxout(internal_warning) << "Cannot update child shape: Instance not a child." << endl; 171 171 return; 172 172 }
Note: See TracChangeset
for help on using the changeset viewer.