马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?立即注册
×
本帖最后由 apoto5 于 2019-5-13 19:47 编辑
第一次打开游戏demo时,立绘在这个地方会出现闪动
demo下载:https://store.steampowered.com/app/926340/_Romans_Christmas/
大概是正常移动到屏幕外,又突然闪回来再移动一次的感觉
游戏一段时间后,闪动现象会消失
此处的代码:
[RenPy] 纯文本查看 复制代码 label freemap_c1_daily:
scene tavern_hall# with dissolve
show ianis r at quarter2 # with dissolve
show peter r at quarter1 # with dissolve
show kane at quarter3 # with dissolve
show anzox at quarter4 # with dissolve
with dissolve
# peter r ianis r kane anzox
$ renpy.pause(0, 0)
$ search = False
$ talk = True
call screen freemap with qdis
with qdis
$ result = _return
if result == "map":
jump map_c1_daily
if result == "talk":
#play music tavern
$ c1_hall = True
play music tavern fadeout 1 fadein 1
label c1_talk_to:
$ peter_thumb = False
$ Ianis_thumb = False
"和谁聊天呢?"
menu:
"安卓":
show peter r at offscreenleft #with move
show ianis r at offscreenleft #with move
show kane at offscreenright #with move
show anzox at middle
with move
"我端着酒杯坐到安卓身边。"
jump c1_talk_to
"彼得":
show ianis r at offscreenleft
show kane at offscreenright
show anzox at offscreenright
show peter r at middle
with move
if c1_talk_to_peter == False:
$ c1_talk_to_peter = True
"我端着酒杯坐到彼得对面。"
jump c1_talk_to
"伊阿尼":
show peter r at offscreenleft
show kane at offscreenright
show anzox at offscreenright
show ianis r at middle
with move
if c1_talk_to_ianis_1 == False and c1_talk_to_ianis_2 == False:
label c1_ianis_special:
play music ianis fadeout 1 fadein 1
if c1_talk_to_ianis == False:
$ c1_talk_to_ianis = True
"我端着酒杯坐到伊阿尼对面。"
jump c1_talk_to
"卡恩":
show peter r at offscreenleft
show ianis r at offscreenleft
show anzox at offscreenright
show kane at middle
with move
jump c1_talk_to
"暂时不聊了吧":
jump map_c1_daily
|