1 | initial version |
This is late but for anyone searching:
gazebo::common::Time::MSleep(unsigned int miliseconds);
However, this seems to have a limit (anyone with an insight??) so if you need anything > 1 second, do a for loop like:
for(int i = 0; i < 1000; ++i) gazebo::common::Time::MSleep(unsigned int seconds);