Version: 2022.2

CommandBuffer.SetProjectionMatrix

切换到手册
public void SetProjectionMatrix (Matrix4x4 proj);

参数

proj 投影(摄像机到剪辑空间)矩阵。

描述

添加用于设置投影矩阵的命令。

The projection matrix is the matrix that transforms from view space into homogeneous clip space.

要设置视图和投影矩阵时,使用 SetViewProjectionMatrices 会更加高效,因为它会在一个 CommandBuffer 命令中设置这两项。

另请参阅:SetViewMatrixSetViewProjectionMatricesCamera.projectionMatrixMatrix4x4.Perspective