getTargetPaths
The getTargetPaths
method returns the target of an incomplete fact.
Syntax
getTargetPaths()
Returns
(unsigned integers) An array of unsigned integers. The first value (if present) is the 0-indexed property of interest. The second value (if present) is the 0-indexed qualifier for the previously identified property.
NOTE: Lua normally indexes arrays from 1.
Example
local targetPaths = incomplete:getTargetPaths() if 2 == #targetPaths then local targetPropOffset = 1+targetPaths[1] local targetQualOffset = 1+targetPaths[2] ...