characterSize
The size of each character (This scales the whole text).
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.TextRenderingModule
public float characterSize { get; set; }
Examples
using UnityEngine;public class Example : MonoBehaviour{ void Start() { GetComponent<TextMesh>().characterSize = 10; }}