📜  虚幻引擎延迟c++代码示例

📅  最后修改于: 2022-03-11 14:44:52.278000             🧑  作者: Mango

代码示例1
cpp
        
            
        
     FTimerHandle TimerHandle;
GetWorld()->GetTimerManager().SetTimer(TimerHandle, [&]()
{
    UE_LOG(LogTemp, Warning, TEXT("This text will appear in the console 3 seconds after execution"))
}, 3, false);