| 86 | } |
| 87 | |
| 88 | void AItem::Tick(float DeltaTime) |
| 89 | { |
| 90 | Super::Tick(DeltaTime); |
| 91 | RunningTime += DeltaTime; |
| 92 | |
| 93 | if (ItemState == EItemState::EIS_Hovering) |
| 94 | { |
| 95 | AddActorWorldOffset(FVector(0.f, 0.f, TransformedSin())); |
| 96 | } |
| 97 | } |
| 98 |
nothing calls this directly
no outgoing calls
no test coverage detected