Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


Minimum

Uses a Minimum algorithm when combining friction or bounciness i.e. the minimum of the two values is used.
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Field
  • Namespace: UnityEngine
  • Assembly: UnityEngine.Physics2DModule
Minimum = 3

Remarks

Given two friction or bounciness values, the Minimum algorithm used is:
valueA < valueB ? valueA : valueB
.