public static void LoadOrtho ();

描述

Helper 函数,用于设置正交透视变换。

调用 LoadOrtho 后,视椎体从 (0,0,-1) 变为 (1,1,100)。\ LoadOrtho 可用于在 2D 模式下绘制图元。

using UnityEngine;

public class Example : MonoBehaviour { // Draws a triangle over an already drawn triangle Material mat;

void OnPostRender() { if (!mat) { Debug.LogError("Please Assign a material on the inspector"); return; } GL.PushMatrix(); mat.SetPass(0); GL.LoadOrtho(); GL.Color(Color.red); GL.Begin(GL.TRIANGLES); GL.Vertex3(0.25f, 0.1351f, 0); GL.Vertex3(0.25f, 0.3f, 0); GL.Vertex3(0.5f, 0.3f, 0); GL.End();

GL.Color(Color.yellow); GL.Begin(GL.TRIANGLES); GL.Vertex3(0.5f, 0.25f, -1); GL.Vertex3(0.5f, 0.1351f, -1); GL.Vertex3(0.1f, 0.25f, -1); GL.End();

GL.PopMatrix(); } }

另请参阅:GL.LoadProjectionMatrix

Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961