getParameter(nameOrID) Function to read the current value of a parameter. The parameter can be determined by name or ID. Available in: Controller, Processor. Returns the current value of the parameter or
Description
Arguments
nameOrID The name or ID of the parameter. string or number Return Values
nil
if the parameter doesn't exist.Example
-- print the value of the parent layer's level parameter
function onLoadIntoSlot()
print("Level = "..this.parent:getParameter("Level")) -- via name
print("Level = "..this.parent:getParameter(38)) -- via ID
end
Overview
Content Tools
1 Comment
Sabine Pfeifer
proofread done