Component:ValueGraphRecorder

From Resonite Wiki
Revision as of 06:33, 17 March 2025 by 989onan bot (talk | contribs) (Automated: update SyncDelegates)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Component image 
Value Graph Recorder component as seen in the Scene Inspector

The ValueGraphRecorder component is used to show a graph of values over time with a specified number of points worth of history. As new points are added, the graph is shifted sideways and old points are deleted.

Fields

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.
RecordingUser direct UserRef The user handling updates for this component.
SourceValue IField`1<Float> The field that will be sampled for values.
UpdateInterval Float The interval, in seconds, that the source field will be sampled at.
Points Int The number of samples to retain.
TargetArray SyncArray`1<Float> The array to store samples in. Typically this will be the Values field in a StandaloneRectMesh<LineGraphMesh>
TargetArrayOffset IField`1<Int> The integer field to set with the offset of where in the TargetArray to start showing samples at.
MinRangeAdjustThreshold Float If a value in the graph goes beyond this value for currently shown samples, adjust the graph minimum value.
MinRangeAdjustMultiplier Float How much to increase the graph size downwards when adjusting for min value (1 is exactly to where the value edge is, 2 is add 2 times the needed value to show min on the graph.
MaxRangeAdjustThreshold Float If a value in the graph goes beyond this value for currently shown samples, adjust the graph maximum value.
MaxRangeAdjustMultiplier Float How much to increase the graph size upwards when adjusting for min value (1 is exactly to where the value edge is, 2 is add 2 times the needed value to show min on the graph.
RangeMin IField`1<Float> The field to drive with what the minimum range of the graph all points being shown is currently.
RangeMax IField`1<Float> The field to drive with what the maximum range of the graph all points being shown is currently.
Drive Bool Whether to use drive fields to drive target values rather than field pointers. Makes the calculations local.
_arrayDrive reference drive of SyncArray`1<Float> The field to drive with the set of samples. Typically this will be the Values field in a StandaloneRectMesh<LineGraphMesh>
_arrayOffsetDrive field drive of Int The integer field to drive with the offset in the TargetArray to start showing samples at.
_rangeMinDrive field drive of Float The field to drive with what the minimum range of the graph all points being shown is currently.
_rangeMaxDrive field drive of Float The field to drive with what the maximum range of the graph all points being shown is currently.

Sync Delegates

Triggers
Method Name Method type and Arguments. Is the method hidden? Description
WriteValue:Action Action X force a write of a value to the graph rather than waiting on Interval

Usage

Attach to a slot and use with a Component:StandaloneRectMesh on a Component:MeshRenderer with a material to view. Use either the fields or drive fields to drive aspects of the graph display for viewing the graph line.

Examples

This article or section is a Stub. You can help the Resonite Wiki by expanding it.


See Also