| 61 | } |
| 62 | |
| 63 | void APickup::Tick(float DeltaTime) |
| 64 | { |
| 65 | Super::Tick(DeltaTime); |
| 66 | |
| 67 | if (PickupMesh) |
| 68 | { |
| 69 | PickupMesh->AddWorldRotation(FRotator(0.f, BaseTurnRate * DeltaTime, 0.f)); |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | void APickup::Destroyed() |
| 74 | { |
nothing calls this directly
no outgoing calls
no test coverage detected