I’m trying to use a slider as a throttle, I’ve already pointed it towards the script I’m using as a control panel, and told it to invoke some arbitrary throttle function:
public void ChangeThrottle(float newSetting)
{
desiredThrottleSetting = newSetting;
}
Since it’s public, it’s trivial to call this from the slider:

However, On Value Changed apparently wants me to input the value manually, and the entire point of using a slider was to let its value inform the throttle; can I somehow change how I’m using On Value Changed, and point it at the slider’s value instead of manually inputing a number?