Transform.localScale 自身缩放

var localScale : Vector3

Description描述

The scale of the transform relative to the parent.

相对于父级物体变换的缩放。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public void Awake() {
		transform.localScale += new Vector3(0.1F, 0, 0);
	}
}
// Widen the object by 0.1
//扩大物体的x轴向0.1个单位
transform.localScale += Vector3(0.1,0,0);
最后修改:2010年12月18日 Saturday 23:47

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。