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

スクリプト言語

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

GL.wireframe

public static var wireframe: bool;

Description

Should rendering be done in wireframe?

Turning on wireframe mode will affect all objects rendered after the call, until you turn wireframe back off. In the Unity editor, wireframe mode is always turned off before repainting any window. Note that some platforms, for example mobile (OpenGL ES) and Flash (Stage3D) do not support wireframe rendering.

	// Attach this script to a camera, this will make it render in wireframe
	function OnPreRender() {
		GL.wireframe = true;
	}
	function OnPostRender() {
		GL.wireframe = false;
	}