Regular API function

simSetDoubleSignal / sim.setDoubleSignal

Description Sets the value of a double 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 simSetDoubleSignal(const simChar* signalName,simDouble 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.setDoubleSignal(string signalName,float signalValue)
Lua
parameters
Similar to the C-function counterpart
Lua
return values
Python
synopsis
sim.setDoubleSignal(string signalName,float signalValue)