Ren'Py memo

Ren'Pyの個人的なメモ

SaveLoad

セーブにメモを作るプラグイン

引用 badmustard.itch.iooriginal code by BadMustard コメントは機械翻訳(DeepL)で日本語化しています。続きがあります。

最新のセーブ/ロードファイルにNEWをつける

参照1:https://www.renpy.cn/forum.php?mod=viewthread&tid=1002&extra=page%3D4 参照2:Little used features screen Load/Save - Lemma Soft Forumsscreens_saveload.py button: (省略) if FileNewest(slot): text "NEW": color "#F0F0EC" #テキスト…

セーブのmax表示を決める

参照 Ren’Py改造メモ(5) – akakyouryuu Screen Actions, Values, and Functions — Ren'Py Documentation for page in range(1, 9): textbutton "[page]" action FilePage(page) textbutton _(">") action FilePageNext(max=8, wrap=True) for page in range(…

前回の続きから機能のメモ

Save on Quit — Ren'Py Patreon これを読めば全部なんとかなるアレンジ label splashscreen: if renpy.can_load("quitsave") and persistent.quitload != 2: if persistent.quitload == 0: call screen confirm(message=_("前回の続きから始めますか?"), ye…

セーブロック機能を付ける

出典元 Making a "Lock Save" action - Lemma Soft Forums 1.pythonを書く options.rpy init python: (省略) if persistent.locked is None: persistent.locked = [] def lockSave(slotname): persistent.locked.append(slotname) if persistent.locked …