Search Unity

  1. Welcome to the Unity Forums! Please take the time to read our Code of Conduct to familiarize yourself with the forum rules and how to post constructively.
  2. We’re making changes to the Unity Runtime Fee pricing policy that we announced on September 12th. Access our latest thread for more information!
    Dismiss Notice
  3. Dismiss Notice

ForceMode.VelocityChange and Friction.

Discussion in 'Physics' started by HPx, Dec 3, 2014.

  1. HPx

    HPx

    Joined:
    Dec 15, 2011
    Posts:
    6
    Hi

    I'd like to move an object using AddForceAtPosition and ForceMode.VelocityChange but it's impacted by friction and gravity. If the speed is too low, my object is stucked.

    Is there any way too disable friction between 2 rigidbodies ? (except by changing their materials)

    Thanks
     
  2. MatthewW

    MatthewW

    Joined:
    Nov 30, 2006
    Posts:
    1,356
  3. HPx

    HPx

    Joined:
    Dec 15, 2011
    Posts:
    6
    I 'd like to do a kind of conveyor belt.
    I've already tried Rigidbody.MovePosition.
    AddForceAtPosition with ForceMode.VelocityChange looks more realistic, particularly when other collisions involved.

    Thx.