This event is called when the extra image associated with the input field has been interacted with.
usingUnityEngine;usingTankAndHealerStudioAssets;publicclassChatBoxExample:MonoBehaviour{ // BE SURE TO ASSIGN THIS IN THE INSPECTOR //publicUltimateChatBox chatBox;voidStart () {chatBox.OnExtraImageInteract+= () => { print( $"Extra image interacted." ); // Disable the input field. This is useful for the extra image being an "Enter" button for the input field.chatBox.DisableInputField(); }; // OR //chatBox.OnExtraImageInteract+= OnExtraImageInteract; }voidOnExtraImageInteract () { print( $"This also works! Extra image interacted." ); }}