この簡単なコードを使用して、ドロップダウンを表示しています
int selected = 0;
///*
string[] options = new string[]
{
"Start With", "End With", "Contains",
};
//criteria = EditorGUILayout.Popup("Search Criteria", 2, options);
//*/
criteria = EditorGUILayout.Popup("Awesome Drop down:", selected, options, EditorStyles.popup);
オプション付きのドロップダウンが完全に表示されますが、別のオプションを選択しようとするとオプションが変更されないという問題がありますか? 何が欠けている?