lovebird icon indicating copy to clipboard operation
lovebird copied to clipboard

Can't debug local variables

Open ghost opened this issue 6 years ago • 0 comments

Hello! I have a problem with debugging. I'm writing a module which has no global variables, because it has no right to clog the global scope. So, how can I debug this module with lovebird? Probably here should be some method to add varables into lovebirds scope. For example:

local some, additional, vars = 1, 2, 3

function love.update()
    lovebird.update(some, additional, vars)
end

ghost avatar Dec 29 '17 23:12 ghost