- Found in:
- JContainers
[DEV SERVER] Loading description...
Parameters
stringpath
floatdefault=0.0
Examples
Auto-Generated Example
string myString__path
float myFloat__default
float returnedValue = JDB.solveFlt(myString__path, myFloat__default)
[DEV SERVER] Loading description...
string myString__path
float myFloat__default
float returnedValue = JDB.solveFlt(myString__path, myFloat__default)Attempts to retrieve the value associated with the @path.
For ex. the following information associated with 'frosfall' key:
"frostfall" : {
"exposureRate" : 0.5,
"arrayC" : ["stringValue", 1.5, 10, 1.14]
}
then JDB.solveFlt(".frostfall.exposureRate") will return 0.5 and
JDB.solveObj(".frostfall.arrayC") will return the array containing ["stringValue", 1.5, 10, 1.14] values