【Defold】AndroidのBackキーでアプリを終了する

2020/07/12Defold, DEVELOP

input ファイルを開きキーを登録します。

目次

コード

on_input にコードを記述します。

function on_input(self, action_id, action)
    -- backキーでアプリを終了させる。
    if action_id == hash("back") and action.pressed then
        print("You back")
        msg.post("@system:", "exit", {code = 0})
    end
end

お知らせ

Posted by kazupon