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

Defold

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

お知らせ