Is it possible to get emoticons to appear just by setting the symbol in a Label's text, using a font with an emoticon set? Does the emoticon have to be the same size of a font glyph? I have a ModalDialog widget I created with displays a message, and I'd like the message to contain images.
Steps:
1. Add a .ttf file to assets location
2. Open Font Maker tab, select .ttf as source.
3. "Create the Font". Save the prefab somewhere.
4. Add an emoticon from the "Symbols and Emoticons" panel in the inspector. (I've tried symbols ":brains:" and "

". I want to show an icon of brains, its an undead kind of game)
5. myUILabelInstance.text = ":brains"; Or myUILabelInstance.text = "

";
6. The font the label is using is the same as the font I added the emoticon to.
When I run the game, the dialog does not have any image displayed. What am I doing wrong?