| 597 | } |
| 598 | |
| 599 | void Plant::enableInterpolation(float extrapolationHint) { |
| 600 | // Only enable plant interpolation when it actually matters, for things that |
| 601 | // generate PlantDrops so that they match when the PlantDrops appear. |
| 602 | if (m_fallsWhenDead) |
| 603 | m_netGroup.enableNetInterpolation(extrapolationHint); |
| 604 | } |
| 605 | |
| 606 | void Plant::disableInterpolation() { |
| 607 | m_netGroup.disableNetInterpolation(); |
nothing calls this directly
no test coverage detected