Regular API function

simSetFloatSignal / sim.setFloatSignal

Description Sets the value of a float signal. A signal created in a child script, a customization script or int the main script will be automatically cleared when the script ends. See also the other signal functions.
C/C++
synopsis
simInt simSetFloatSignal(const simChar* signalName,simFloat signalValue)
C/C++
parameters
signalName: name of the signal
signalValue: value of the signal
C/C++
return value
-1 if operation was not successful
Lua
synopsis
sim.setFloatSignal(string signalName,float signalValue)
Lua
parameters
Similar to the C-function counterpart
Lua
return values
Python
synopsis
sim.setFloatSignal(string signalName,float signalValue)