This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
/// <summary> | |
/// An example of the code of how to calculate the force of a Rigidbody in order to achieve the specified speed characteristics. | |
/// </summary> | |
public class ForceProcessor : MonoBehaviour | |
{ | |
/// <summary> | |
/// Target speed; | |
/// </summary> |