// Pcx - Point cloud importer & renderer for Unity
// https://github.com/keijiro/Pcx
#if UNITY_EDITOR
using UnityEditor;


namespace Pcx
{
    // Note: Not sure why but EnumPopup doesn't work in ScriptedImporterEditor,
    // so it has been replaced with a normal Popup control.

    [CustomEditor(typeof(PlyImporter))]
    class PlyImporterInspector : UnityEditor.AssetImporters.ScriptedImporterEditor
    {
        SerializedProperty _containerType;

        string[] _containerTypeNames;

        protected override bool useAssetDrawPreview { get { return false; } }

        public override void OnEnable()
        {
            base.OnEnable();

            _containerType = serializedObject.FindProperty("_containerType");
            _containerTypeNames = System.Enum.GetNames(typeof(PlyImporter.ContainerType));
        }

        public override void OnInspectorGUI()
        {
            _containerType.intValue = EditorGUILayout.Popup(
                "Container Type", _containerType.intValue, _containerTypeNames);

            base.ApplyRevertGUI();
        }
    }
}
#endif