コード例 #1
0
        protected override void OnGUI(Rect position, GUIContent label)
        {
            position = BeginBlock(metadata, position, label);

            var fieldPosition = new Rect
                                (
                position.x,
                position.y,
                position.width,
                EditorGUIUtility.singleLineHeight
                                );

            var popupLabel = StringUtility.FallbackEmpty(((LooseAssemblyName)metadata.value).name, "(No Assembly)");

            var newAssemblyName = (LooseAssemblyName)LudiqGUI.FuzzyPopup
                                  (
                fieldPosition,
                () => new LooseAssemblyNameOptionTree(),
                ((LooseAssemblyName)metadata.value),
                new GUIContent(popupLabel)
                                  );

            if (EndBlock(metadata))
            {
                metadata.RecordUndo();
                metadata.value = newAssemblyName;
            }
        }