FontStyle.Normal Manual     Reference     Scripting  
Scripting > Enumerations > FontStyle
FontStyle.Normal

FontStyle.Normal

Description

No special style is applied.

JavaScripts
guiText.fontStyle = FontStyle.Normal;

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
void Awake() {
guiText.fontStyle = FontStyle.Normal;
}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

def Awake():
guiText.fontStyle = FontStyle.Normal