using UnityEngine; namespace UnityEditor.Recorder { abstract class InputPropertyDrawer : TargetedPropertyDrawer where T : class { public override float GetPropertyHeight(SerializedProperty property, GUIContent label) { return 0.0f; } } }