| 71 | } |
| 72 | |
| 73 | void GuiDetectDevice::update(int deltaTime) |
| 74 | { |
| 75 | if(mHoldingFinish) |
| 76 | { |
| 77 | mFinishTimer += deltaTime; |
| 78 | |
| 79 | if(mFinishTimer > 1000) |
| 80 | done(); |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | void GuiDetectDevice::render(const Eigen::Affine3f& parentTrans) |
| 85 | { |
nothing calls this directly
no outgoing calls
no test coverage detected