PhysicMaterial.staticFriction 静态摩擦力

var staticFriction : float

Description描述

The friction used when an object is lying on a surface. Usually a value from 0 to 1.

当物体在表面静止时使用的摩擦力。通常在0到1之间。

A value of 0 feels like ice, 1 feels like rubber.

0值像冰,1值像橡胶。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void Awake() {
		collider.staticFriction = 1;
	}
}
collider.staticFriction = 1;
最后修改:2011年3月31日 Thursday 9:53

本脚本参考基于Unity 3.4.1f5

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