[UE4]APlayerController::PlayerTick()注意事项

 

官方文档:

APlayerController::PlayerTick()

https://docs.unrealengine.com/latest/INT/API/Runtime/Engine/GameFramework/APlayerController/PlayerTick/index.html

 

PlayerController用PlayerTick,Character中有Tick函数,什么时候用PlayerTick什么时候用Tick,官方文档的说明是:

PlayerTick只能用于本地Controller,不能用于服务端和非本地的Controller;Tick则不受限制。

 

 

你可能感兴趣的:(UE4)