@A1ex
I just tried camera.bulb (test script below) and no matter what, it only takes an image at 0.4s, ie instead of 50s.
Is it my scripting or a bug?
Cheers
Garry
menu.new
{
name = "Run",
select = function() task.create(run_test) end,
depends_on = DEPENDS_ON.M_MODE,
}
run_test = function()
menu.close()
lv.start()
msleep(1000)
camera.bulb(50)
end