19 lines
771 B
C#
19 lines
771 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
using UnityEngine.UI;
|
|
|
|
public class scriptTexttest : MonoBehaviour
|
|
{
|
|
public Text bubbleText;
|
|
public Text bubbleTitleTxt;
|
|
public GameObject bubble;
|
|
public GameObject bubbleTitle;
|
|
|
|
void Start ()
|
|
{
|
|
bubbleTitleTxt.text = "Font JazzCreate Bubble";
|
|
bubbleText.text = "☺☻♥♦♣♠•◘○◙♂♀♪♫☼►◄↕‼▬↨↑↓→←\n" + "∟↔▲▼!#$%&'()*+,-./0123456789:;<=>?@\n"
|
|
+ "ABCDEFGHIJKLMNOPQRSTUVWXYZ\n`abcdefghijklmnopqrstuvwxyz\nîìÄÅÉæÆôöòûùÿÖÜ \n ¢£¥ƒáíóúñѪº¿¬½¼¡«»░▒▓\n "
|
|
+ "│┤╣║╗┐└┴┬├─┼╚╔╩╦╣║╗•§©®¶" + "\nThanks for using fonts from JazzCreates2015©.";
|
|
}
|
|
} |