This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0417556d3529810601cece432f030c37741af0020a44678f5d2d106dd0c431e6a208076d259e644c87fb695c6abf18cb27f8a2e73c107ec719c3843fc7bc63795e |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Shader "Name" { | |
Properties { | |
name ("display name", Range (min, max)) = number | |
name ("display name", Float) = number | |
name ("display name", Int) = number | |
name ("display name", Color) = (number,number,number,number) | |
name ("display name", Vector) = (number,number,number,number) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
public class DebugDrawGameObjectMesh : MonoBehaviour | |
{ | |
[Header("Configuration")] | |
[Space] | |
public bool drawWireMesh = true; | |
public Color wireColor = new Color(0, 0, 0, .8f); |