言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

GL.Vertex3

public static function Vertex3(x: float, y: float, z: float): void;

Description

Submit a vertex.

In OpenGL this matches glVertex3f(x,y,z); on other graphics APIs the same 機能性を持つものです。 この関数はGL.BeginとGL.End関数の間で呼び出すことができます。

	// Draws a line from the bottom left
	// to the top right of the Screen
	// Using GL.Vertex3
	var mat : Material;

	function OnPostRender() {
		if (!mat) {
			Debug.LogError("Please Assign a material on the inspector");
			return;
		}
		GL.PushMatrix();
		mat.SetPass(0);
		GL.LoadOrtho();
		GL.Begin(GL.LINES);
		GL.Vertex3(0,0,0);
		GL.Vertex3(1,1,0);
		GL.End();
		GL.PopMatrix();
	}