Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

GL.LoadProjectionMatrix

static function LoadProjectionMatrix(mat: Matrix4x4): void;
static void LoadProjectionMatrix(Matrix4x4 mat);
static def LoadProjectionMatrix(mat as Matrix4x4) as void

Description

Load an arbitrary matrix to the current projection matrix.

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

	var projMtrx : Matrix4x4 = Matrix4x4.identity;

function OnPostRender() { GL.PushMatrix(); GL.LoadProjectionMatrix(projMtrx); // Do your drawing here... GL.PopMatrix(); }

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    public Matrix4x4 projMtrx = Matrix4x4.identity;
    void OnPostRender() {
        GL.PushMatrix();
        GL.LoadProjectionMatrix(projMtrx);
        GL.PopMatrix();
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	public projMtrx as Matrix4x4 = Matrix4x4.identity

	def OnPostRender() as void:
		GL.PushMatrix()
		GL.LoadProjectionMatrix(projMtrx)
		GL.PopMatrix()