Z+ = Forward, Y+ = Up, X+ = Right
//SceneView.cpp
void FViewMatrices::Init(const FMinimalInitializer& Initializer);
// first 3 rows of ViewRotationMatrix
// {0, 0, 1, 0}
// {1, 0, 0, 0}
// {0, 1, 0, 0}
See the comment in code
//SceneView.h
struct FSceneViewProjectionData
{
/** UE projection matrix projects such that clip space Z=1 is the near plane, and Z=0 is the infinite far plane. */
FMatrix ProjectionMatrix;
}
void FMinimalViewInfo::CalculateProjectionMatrixGivenViewRectangle(const FMinimalViewInfo& ViewInfo, TEnumAsByte<enum EAspectRatioAxisConstraint> AspectRatioAxisConstraint, const FIntRect& ConstrainedViewRectangle, FSceneViewProjectionData& InOutProjectionData)
FReversedZPerspectiveMatrix