Set whether the renderer's wireframe will be hidden when the renderer's gameobject is selected.
Cube with the wireframe hidden/shown.
using UnityEngine; using UnityEditor;
public class ShowHideWireframeExample : EditorWindow { [MenuItem( "Example/Show WireFrame %s" )] static void ShowWireframe( ) { foreach( GameObject s in Selection.gameObjects ) { Renderer rend = s.GetComponent<Renderer>( );
if( rend ) EditorUtility.SetSelectedWireframeHidden( rend, false ); } }
[MenuItem( "Example/Show WireFrame %s", true )] static bool ShowWireframeValidate( ) { return Selection.activeGameObject != null; }
[MenuItem( "Example/Hide WireFrame %h" )] static void HideWireframe( ) { foreach( GameObject s in Selection.gameObjects ) { Renderer rend = s.GetComponent<Renderer>( );
if( rend ) EditorUtility.SetSelectedWireframeHidden( rend, true ); } }
[MenuItem( "Example/Hide WireFrame %h", true )] static bool HideWireframeValidate( ) { return Selection.activeGameObject != null; } }