ScriptableObjectCollection icon indicating copy to clipboard operation
ScriptableObjectCollection copied to clipboard

Rename CollectionItem too hard to find

Open mgmhunt opened this issue 9 months ago • 2 comments

Hi, I can't see anyway to easily rename the SO after they have been created - as per when you first create them and the object name is highlighted and editable.

EDIT - Found it F2 after looking through code - too hidden for me (on a Mac too so not instinctual!)

Added Rename Asset to ShowOptionsForIndex line 724 of CollectionCustomEditor

            menu.AddSeparator("");
            menu.AddItem(
                new GUIContent("Rename Asset"),
                false,
                () => { RenameItemAtIndex(targetIndex); }
            );

mgmhunt avatar May 18 '24 04:05 mgmhunt