How to create a custom editor script that allows you to show or hide certain parameters based on the value of a boolean.
using UnityEngine; using System.Collections; using UnityEditor; [CustomEditor(typeof(ObjectBuilderScript))] public class ObjectBuilderEditor : Editor { public ...