Navigation
API > API/Plugins > API/Plugins/GameplayCameras
Flags for what callbacks an evaluation service wants to opt-into.
| Name | UE::Cameras::ECameraEvaluationServiceFlags |
| Type | enum |
| Header File | /Engine/Plugins/Cameras/GameplayCameras/Source/GameplayCameras/Public/Core/CameraEvaluationService.h |
| Include Path | #include "Core/CameraEvaluationService.h" |
Syntax
namespace UE
{
namespace Cameras
{
enum ECameraEvaluationServiceFlags
{
None = 0,
NeedsPreUpdate = 1 << 0,
NeedsPostUpdate = 1 << 1,
NeedsRootCameraNodeEvents = 1 << 2,
Default = NeedsPreUpdate | NeedsPostUpdate | NeedsRootCameraNodeEvents,
}
}
}
Values
| Name | Remarks |
|---|---|
| None | |
| NeedsPreUpdate | |
| NeedsPostUpdate | |
| NeedsRootCameraNodeEvents | |
| Default |