马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?立即注册
×
本帖最后由 天使的遗族 于 2022-3-12 13:47 编辑
业界流行的显示最新手动保存存档位置的方式,闪烁很显目,比去读保存的对话内容回忆推到哪里、或者比较哪个存档保存时间最近更快,仅用来判断手动存档,不会判断reload、auto、或quick
[RenPy] 纯文本查看 复制代码 init python:
import re
def action_on_save(slot=0):
# save_name = re.sub('(\{.*?\})|(\\\w)|\s', '', _last_say_what)
#
# if save_name >15:
# save_name = save_name[:15]+'...'
fileslotname = FileSlotName(slot, slots_per_page=gui.file_slot_cols * gui.file_slot_rows, auto=u'a', quick=u'q', format=u'%s%d')
if fileslotname[0] !='a' and fileslotname[0] !='q' :
fileslotname = int(fileslotname)-1
# $ print('name:',fileslotname)
if fileslotname < 10:
persistent.stored_slot_page = 1 #在第一页
else:
persistent.stored_slot_page = fileslotname/10+1#记下保存时存档页
persistent.stored_slot_name = fileslotname%10+1#记下保存时存档名字
return
transform transform_save_label_new:
pause 0.5
linear .5 alpha 0.3
pause 0.5
linear .5 alpha 1.0
repeat
if fileslotname[0] !='a' and fileslotname[0] !='q':
$ fileslotname = int(fileslotname)-1
if persistent.stored_slot_page == fileslotname/10+1 and persistent.stored_slot_name == fileslotname%10+1 :
fixed:
text "NEW" at transform_label_new_auto_twinckle(time=1.0):
xalign 1.0 yalign 1.0 color '#00896Caa'
|