Component image 
Constant Lerp Value component as seen in the Scene Inspector

The ConstantLerpValue component will make the Value reach TargetValue, making Speed progress per second. it can also be known as a linear lerp.
Fields
| Name | Type | Description |
|---|---|---|
persistent
|
Bool | Determines whether or not this item will be saved to the server. |
UpdateOrder
|
Int | Controls the order in which this component is updated. |
Enabled
|
Bool | Controls whether or not this component is enabled. Some components stop their functionality when this field is disabled, but some don't. |
TargetValue
|
T | The value to stop at. |
Speed
|
Float | The amount to change Value by per second to reach TargetValue
|
WriteBack
|
Bool | Whether changes to Value will be written to TargetValue. See write backs.
|
Value
|
field drive of T | The value to constantly progress towards TargetValue
|