| 130 | } |
| 131 | |
| 132 | void AMjReplayManager::EndPlay(const EEndPlayReason::Type EndPlayReason) |
| 133 | { |
| 134 | Super::EndPlay(EndPlayReason); |
| 135 | |
| 136 | if (Manager && Manager->PhysicsEngine) |
| 137 | { |
| 138 | Manager->PhysicsEngine->OnPostStep = nullptr; |
| 139 | Manager->PhysicsEngine->ClearCustomStepHandler(); |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | void AMjReplayManager::Tick(float DeltaTime) |
| 144 | { |
nothing calls this directly
no test coverage detected