Nez.ArcadeRigidbody.setElasticity C# (CSharp) Method

setElasticity() public method

0 - 1 range where 0 is no bounce and 1 is perfect reflection
public setElasticity ( float value ) : ArcadeRigidbody
value float Value.
return ArcadeRigidbody
		public ArcadeRigidbody setElasticity( float value )
		{
			_elasticity = Mathf.clamp01( value );
			return this;
		}