GUIText.alignmentvar alignment : TextAlignmentDescriptionThe alignment of the text.
JavaScripts
guiText.alignment = TextAlignment.Left;
using UnityEngine;
using System.Collections; public class example : MonoBehaviour { void Awake() { guiText.alignment = TextAlignment.Left; } } import UnityEngine
import System.Collections class example(MonoBehaviour): def Awake(): guiText.alignment = TextAlignment.Left |
