版本:Unity 6 (6000.0)
语言English
  • C#

GL.PopMatrix

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交,但我们确实阅读了用户提出的每个建议的更改,并在适用的情况下进行更新。

关闭

提交失败

由于某些原因,您的建议更改无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

声明

public static void PopMatrix();

描述

从矩阵栈顶恢复模型、视图和投影矩阵。

更改模型、视图或投影矩阵会覆盖当前的渲染矩阵。建议使用 GL.PushMatrixGL.PopMatrix 保存和恢复这些矩阵。

其他资源:PushMatrix 函数。

using UnityEngine;

public class Example : MonoBehaviour { // Draw a yellow line from the botton left to the // top right of the screen Material mat;

void OnPostRender() { if (!mat) { Debug.LogError("Please Assign a material on the inspector"); return; } GL.PushMatrix(); // Save the current state mat.SetPass(0); GL.LoadPixelMatrix(); GL.Color(Color.yellow); GL.Begin(GL.LINES); GL.Vertex3(0, 0, 0); GL.Vertex3(Screen.width, Screen.height, 0); GL.End(); GL.PopMatrix(); // Pop changes. } }