public abstract class SAMSlider : MonoBehaviour
This is a very simple MonoBehaviour class you can derive from to interface with the
SAMInitializer component.
Interfacing with the SAMInitializer allows you to receive Initialization Progress
updates,
where the value corresponds to the position of the slider (from 0 to 1).
public abstract void SetSliderValue(float value)
When overriden, should update the slider value to the input value.
Name | Type | Description |
---|---|---|
value | float |
The value to set. |