InteractiveCloth.friction 摩擦力

var friction : float

Description描述

The friction of the cloth.

布料的摩擦力。

Must be between zero and one.

必须在0~1之间。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void Awake() {
		transform.GetComponent<InteractiveCloth>().friction = 0;
	}
}
// Make the cloth slide on any surface
//使布料在任何表面上滑落

transform.GetComponent(InteractiveCloth).friction = 0;
最后修改:2011年3月27日 Sunday 17:50

本脚本参考基于Unity 3.4.1f5

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