FTimerManager::SetTimerForNextTick

Sets a timer to call the given native function on the next tick.

Choose your operating system:

Windows

macOS

Linux

References

Module

Engine

Header

/Engine/Source/Runtime/Engine/Public/TimerManager.h

Include

#include "TimerManager.h"

Syntax

template<class UserClass>
FTimerHandle SetTimerForNextTick
(
    UserClass * inObj,
    typename FTimerDelegate::TMethodPtr< UserClass > inTimerMethod
)

Remarks

Sets a timer to call the given native function on the next tick.

Parameters

Parameter

Description

inObj

Object to call the timer function on.

inTimerMethod

Method to call when timer fires.