| 651 | } |
| 652 | |
| 653 | void ToolUser::NetItem::tickNetInterpolation(float dt) { |
| 654 | if (m_netInterpolationEnabled) { |
| 655 | if (auto netItem = as<NetElement>(m_item.get())) |
| 656 | netItem->tickNetInterpolation(dt); |
| 657 | } |
| 658 | } |
| 659 | |
| 660 | bool ToolUser::NetItem::writeNetDelta(DataStream& ds, uint64_t fromVersion, NetCompatibilityRules rules) const { |
| 661 | if (!checkWithRules(rules)) return false; |