There is a problem of adding images for Dropdown items. When specifying images for Options in the Inspector, there is no effect. Trying to add Options in the code:
public class FillDroPDown : MonoBehavior { public Dropdown dd; void Start () { dd.options.Clear(); dd.AddOptions(new List<Dropdown.OptionData> { new Dropdown.OptionData { text="1", image=Resources.Load("LeftToRight.png", typeof(Sprite)) as Sprite } }); } void Update () { } } Text data is displayed successfully, but images are not. Please help with solving this problem. Unity version 5.3.4f1.