| AActor::Tick()
|
Module |
|
Header |
/Engine/Source/Runtime/Engine/Classes/GameFramework/GameMode.h |
Include |
#include "GameFramework/GameMode.h" |
Source |
/Engine/Source/Runtime/Engine/Private/GameMode.cpp |
virtual void Tick
(
float DeltaSeconds
)
Function called every frame on this Actor. Override this function to implement custom logic to be executed every frame. Note that Tick is disabled by default, and you will need to check PrimaryActorTick.bCanEverTick is set to true to enable it.
Parameter |
Description |
---|---|
DeltaSeconds |
Game time elapsed during last frame modified by the time dilation |