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

FontStyle.Normal

Description

No special style is applied.

JavaScript
guiText.fontStyle = FontStyle.Normal;

using UnityEngine;
using System.Collections;

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

import UnityEngine
import System.Collections

class example(MonoBehaviour):

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