Right now implementing the _WB_GetCustomTitle method has no effect on the dropdown selection list name appearance and only on the display name after the selection. I would like this to be updated so the list already respects these names. In the example below the selection should already show [MODIFED] on all the available options.
class EL_TestComponentClass : ScriptComponentClass { } class EL_TestComponent : ScriptComponent { [Attribute(desc: "Filtered selection test")] ref array<ref EL_SelectionBase> m_aSelections; } [BaseContainerProps(), EL_CustomSelectionTitle()] class EL_SelectionBase { } [BaseContainerProps(), EL_CustomSelectionTitle()] class EL_SelectionEntryA : EL_SelectionBase { } [BaseContainerProps(), EL_CustomSelectionTitle()] class EL_SelectionEntryB : EL_SelectionBase { } class EL_CustomSelectionTitle: BaseContainerCustomTitle { override bool _WB_GetCustomTitle(BaseContainer source, out string title) { title = source.GetClassName() + " [MODIFIED]"; return true; } }