Background for Skyrim SE
Member of the JDB script
floatfunctionsolveFlt(stringpath, floatdefault=0.0)NativeGlobal

Description

Documentation Comment

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


Parameters

  1. stringpath

  2. floatdefault=0.0


Examples

Auto-Generated Example

string myString__path
float myFloat__default

float returnedValue = JDB.solveFlt(myString__path, myFloat__default)
Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.