April 2018
Beginner
468 pages
11h 7m
English
The Slider component's default event is the On Value Changed event, as seen in the On Value Changed (Single) section of the Slider component. This event will trigger whenever the Slider's Handle is moved. It can accept a float argument.
If you want the Slider's value to be sent as an argument to a function that has a parameter, you must select the function from the Dynamic float list (similar to selecting functions from the Toggle's Dynamic bool list).
The following functions and image represent a Slider example found in the Chapter7Text scene that triggers events that call functions with and without parameters:
public void SliderWithoutParameter(){ Debug.Log("changed");} public void SliderWithParameter(float ...