MCPcopy Create free account
hub / github.com/DruidMech/UE5_TheUltimateDeveloperCourse / Tick

Method Tick

Source/Slash/Private/Items/Item.cpp:88–97  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

86}
87
88void 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected