【Defold】rendercam アセット使用時にカーソルの位置がズレてしまう
rendercam.screen_to_world_2d で変換する必要があります。
function on_input(self, action_id, action)
if not action_id or action_id == hash("touch") then
local action_pos = rendercam.screen_to_world_2d(action.screen_x, action.screen_y)
go.set_position(action_pos)
end
end