渲染时应呈现线框吗?
开启线框模式后,会影响在调用该模式后渲染的所有对象,直到您关闭线框模式。在 Unity 编辑器中,线框模式始终会在重新绘制任何窗口前关闭。
请注意,某些平台(例如移动设备(OpenGL ES))不支持线框渲染。
using UnityEngine;
public class Example : MonoBehaviour { // Attach this script to a camera, this will make it render in wireframe void OnPreRender() { GL.wireframe = true; }
void OnPostRender() { GL.wireframe = false; } }