wireframe
Should rendering be done in wireframe?
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public static bool wireframe { get; set; }
Remarks
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) does not support wireframe rendering.
Examples
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; }}