Regular API function

simGetFloatSignal / sim.getFloatSignal

Description Gets the value of a float signal. See also the other signal functions.
C/C++
synopsis
simInt simGetFloatSignal(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, 0 if signal does not exist, 1 if signalValue was retrieved
Lua
synopsis
float signalValue=sim.getFloatSignal(string signalName)
Lua
parameters
signalName: name of the signal
Lua
return values
signalValue: value of the signal. nil if operation was not successful or if signal does not exist
Python
synopsis
float signalValue=sim.getFloatSignal(string signalName)