add info |
add usage |
||
Line 24: | Line 24: | ||
<!--T:3--> | <!--T:3--> | ||
== Usage == | == Usage == | ||
Can be used to keep the fullness of two different containers the same percentage wise based on purely the stored units and maximum capacity. | |||
<!--T:4--> | <!--T:4--> | ||
Line 30: | Line 31: | ||
<!--T:5--> | <!--T:5--> | ||
== | == See Also == | ||
* [[Component:LinearMapper1D|LinearMapper1D]] | * [[Component:LinearMapper1D|LinearMapper1D]] | ||
* [[Component:LinearMapper2D|LinearMapper2D]] | * [[Component:LinearMapper2D|LinearMapper2D]] |
Revision as of 05:33, 23 January 2025
This article or section is a Stub. You can help the Resonite Wiki by expanding it.
Component image 
Linear Mapper 1D component as seen in the Scene Inspector

Linear Mapper 1D is a component that live maps one range to another, allowing for a reverse mapping of the target range value back to the source range when it is written to.
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. |
Source
|
direct RelayRef`1<IValue`1<Float>> | The value to map from SourceMin to SourceMax using Target .
|
Target
|
field drive of Float | The value to map from TargetMin to TargetMax using Source .
|
SourceMin
|
Float | The minimum of the range of the Source value.
|
SourceMax
|
Float | The maximum of the range of the Source value.
|
TargetMin
|
Float | The minimum of the range of the Target value.
|
TargetMax
|
Float | The maximum of the range of the Target value.
|
AllowReverseMapping
|
Bool | Allow Target to map it's value to Source 's ranged value when written to.
|
Clamp
|
Bool | Whether to prevent Source and Target from going outside their defined ranges.
|
Usage
Can be used to keep the fullness of two different containers the same percentage wise based on purely the stored units and maximum capacity.