var tabSize : float
Description
The tab width multiplier.
This is multiplied with the tab width defined in the font.
using UnityEngine;
using System.Collections;
public class example :
MonoBehaviour {
void Awake() {
guiText.tabSize = 4.0F;
}
}
import UnityEngine
import System.Collections
class example(
MonoBehaviour):
def
Awake():
guiText.tabSize = 4.0F