이 페이지가 있는 버전:
이 페이지가 없는 버전:
The scale of the transform relative to the parent.
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { void Example() { // Widen the object by 0.1 transform.localScale += new Vector3(0.1F, 0, 0); } }