返回介绍

GL.wireframe 线框

发布于 2019-12-18 15:37:44 字数 1270 浏览 1177 评论 0 收藏 0

JavaScript => public static var wireframe: bool;
C# => public static bool wireframe; ;

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.

打开线框模式将影响调用以后所有渲染的对象,直到你关闭线框。在Unity编辑器,在任意窗口重绘之前,线框模式总是关闭的。

Note that some platforms, for example mobile (OpenGL ES) and Flash (Stage3D) do not support wireframe rendering.

注意默写平台,例如手机(OpenGL ES)和Flash(Stage3D)不支持线框渲染。

JavaScript:

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

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    void OnPreRender() {
        GL.wireframe = true;
    }
    void OnPostRender() {
        GL.wireframe = false;
    }
}

GL

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

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

发布评论

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