JointSpring.damper
var damper: float;
float damper;
damper as float
Description

The damper force uses to dampen the spring.

	hingeJoint.spring.damper = 3;
using UnityEngine;
using System.Collections;

public class Example : MonoBehaviour {
    void Example() {
        hingeJoint.spring.damper = 3;
    }
}
import UnityEngine
import System.Collections

public class Example(MonoBehaviour):

	def Example() as void:
		hingeJoint.spring.damper = 3