Now I have touchpressed and touchreleased working!
The stack of these handlers is quite deep at this point: car.* -> on.* -> App.* -> love.*
But I feel like I have a good rationale for each of these: love.* - OS App.* - testable on.* - live-editable car.* - the shell
ZENSSO3DFZKXGQB54DQUS5Q6A6ADB7X7XCMCLX27Y5DGWQUZSIEAC
populate_missing_handlers = function()
for handler_name in pairs(love.handlers) do
if on[handler_name] == nil then
-- make it available to scripts
on[handler_name] = function(...)
if car[handler_name] then
car[handler_name](...)
end
end
end
end
end