Ren'Py memo

Ren'Pyの個人的なメモ

モーダルウインドウの外側をクリックで閉じる

資料:
スクリーンとスクリーン言語 — Ren'Py Documentation

screen confirm(message, yes_action, no_action):

    modal True
(省略)
    dismiss action no_action
(省略)
textbutton _("Yes") action yes_action
textbutton _("No!") action no_action