is there some way to access some var in parent scope var with same name as in local scope ?
A small example:
Code: Select all
local xPosition -- Parent scope Var
function setPosition(xPosition, yPosition)
xPosition -- Access local var
-- How to access parent scope xPosition ?
end
TY