Description
Changelog
Reviews
Easily track any float value you wish to track
Functions
use add_value(value: float) everytime you want to add a point into the graph tracking the value
note:
to always track a value use set
for example:
@onready var Tracker: ValueTracker = $ValueTracker
var speed: float : set = speed_set
func speed_set(value):
Tracker.add_value(value)
speed = value
Settings
- set
MaxSepratesto how many max points can be in the graph at the same time. - enable
AlwaysClampto always change maximum and minimum to whatever is the currents seen in graph values, instead of all graphed values. - enable
UseCustomto use the custom clamp values.- set
CustomMaxto clamp the maximum of graphed values. - set
CustomMinto clamp the minimum of graphed values.
- set
Changelog for version 1.0
No changelog provided for this version.