Skip to content

Instantly share code, notes, and snippets.

@nibasya
Last active August 13, 2019 03:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nibasya/082ac3318f53183b0c0833eb7ca35616 to your computer and use it in GitHub Desktop.
Save nibasya/082ac3318f53183b0c0833eb7ca35616 to your computer and use it in GitHub Desktop.
An example using the grouped data
public float targetVelocity; // target speed of rotation
public float torque; // a torque to be applied to each wheel
public Wheel wheel; // a group of setting related to wheels
// Start is called before the first frame update
void Start()
{
foreach(Rigidbody rb in wheel.wheels)
{
rb.mass = wheel.wheelMass;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment