CinemachineVirtualCameraBase.OnPostPipelineStageDelegate Delegate

Cinemachine

CinemachineVirtualCameraBaseOnPostPipelineStageDelegate Delegate

A delegate to hook into the state calculation pipeline. This will be called after each pipeline stage, to allow other services to hook into the pipeline. See CinemachineCore.Stage. Parameters: * CinemachineVirtualCameraBase vcam: the virtual camera being updated * CinemachineCore.Stage stage: what stage in the pipeline has just been updated * ref CameraState newState: the current state of the vcam * float deltaTime: the frame timestep. Less than 0 means "don't consider the previous frame"

Namespace:  Cinemachine
Assembly:  Cinemachine (in Cinemachine.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax
public delegate void OnPostPipelineStageDelegate(
	CinemachineVirtualCameraBase vcam,
	CinemachineCoreStage stage,
	ref CameraState newState,
	float deltaTime
)
function(vcam, stage, newState, deltaTime);

Parameters

vcam
Type: CinemachineCinemachineVirtualCameraBase
stage
Type: CinemachineCinemachineCoreStage
newState
Type: CinemachineCameraState
deltaTime
Type: SystemSingle
See Also