返回介绍

GL.LoadPixelMatrix 加载像素矩阵

发布于 2019-12-18 15:37:43 字数 4571 浏览 1250 评论 0 收藏 0

JavaScript => public static function LoadPixelMatrix(): void;
C# => public static void LoadPixelMatrix();

Description 描述

Setup a matrix for pixel-correct rendering.

设置一个矩阵用于像素矫正渲染。

This sets up modelview and projection matrices so that X, Y coordinates map directly to pixels. The (0,0) is at the bottom left corner of current camera's viewport. The Z coordinate goes from -1 to +1.

这设置模型视图和投影矩阵,为了使坐标X,Y映射为屏幕上的像素点。(0,0)对应视点的左下角。Z坐标值从-1到+1.

This function overrides current camera's parameters, so most often you want to save and restore matrices using GL.PushMatrix and GL.PopMatrix.

这个函数会覆盖当前camera的参数,许多情况下你需要用到GL.PushMatrix 和GL.PopMatrix矩阵函数来保存和恢复。

JavaScript:

	// Draws a red triangle using pixels as coordinates to paint on.
	var mat : Material;
 
	function OnPostRender() {
		if (!mat) {
			Debug.LogError("Please Assign a material on the inspector");
			return;
		}
		GL.PushMatrix();
		mat.SetPass(0);
		GL.LoadPixelMatrix();
		GL.Color(Color.red);
		GL.Begin(GL.TRIANGLES);
		GL.Vertex3(0,0,0);
		GL.Vertex3(0,Screen.height/2,0);
		GL.Vertex3(Screen.width/2,Screen.height/2,0);
		GL.End();
		GL.PopMatrix();
	}

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    public Material mat;
    void OnPostRender() {
        if (!mat) {
            Debug.LogError("Please Assign a material on the inspector");
            return;
        }
        GL.PushMatrix();
        mat.SetPass(0);
        GL.LoadPixelMatrix();
        GL.Color(Color.red);
        GL.Begin(GL.TRIANGLES);
        GL.Vertex3(0, 0, 0);
        GL.Vertex3(0, Screen.height / 2, 0);
        GL.Vertex3(Screen.width / 2, Screen.height / 2, 0);
        GL.End();
        GL.PopMatrix();
    }
}

JavaScript => public static function LoadPixelMatrix(left: float, right: float, bottom: float, top: float): void;
C# => public static void LoadPixelMatrix(float left, float right, float bottom, float top);

Description 描述

Setup a matrix for pixel-correct rendering.

设置一个矩阵用于像素矫正渲染。

This sets up modelview and projection matrices so that X, Y coordinates map directly to pixels. The (left,bottom is at the bottom left corner of current camera's viewport; and (top,right) is at the top right corner of current camera's viewport. The Z coordinate goes from -1 to +1.

这设置模型视图和投影矩阵,为了使坐标X,Y映射为屏幕上的像素点。(left,bottom)在当前相机视图的左下角, (top,right)在当前相机视图的右上角,Z坐标值从-1到+1。

This function overrides current camera's parameters, so most often you want to save and restore matrices using GL.PushMatrix and GL.PopMatrix.

这个函数会覆盖当前camera的参数,许多情况下你需要用到GL.PushMatrix 和GL.PopMatrix矩阵函数来保存和恢复。

JavaScript:

	var mat : Material;
 
	function OnPostRender() {
		if (!mat) {
			Debug.LogError("Please Assign a material on the inspector");
			return;
		}
		GL.PushMatrix();
		mat.SetPass(0);
		GL.LoadPixelMatrix(10,20,10,20);
		GL.Color(Color.red);
		GL.Begin(GL.TRIANGLES);
		GL.Vertex3(10,10,0);
		GL.Vertex3(10,20,0);
		GL.Vertex3(20,20,0);
		GL.End();
		GL.PopMatrix();
	}

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    public Material mat;
    void OnPostRender() {
        if (!mat) {
            Debug.LogError("Please Assign a material on the inspector");
            return;
        }
        GL.PushMatrix();
        mat.SetPass(0);
        GL.LoadPixelMatrix(10, 20, 10, 20);
        GL.Color(Color.red);
        GL.Begin(GL.TRIANGLES);
        GL.Vertex3(10, 10, 0);
        GL.Vertex3(10, 20, 0);
        GL.Vertex3(20, 20, 0);
        GL.End();
        GL.PopMatrix();
    }
}

GL

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文