找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 1521|回复: 2

[求助] 请问,如何按下一个键使图片移动一段距离?

[复制链接]
发表于 2022-5-9 20:11:31 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?立即注册

×
请问,如何按下一个键使图片移动一段距离。比如一张球的图片,我按下“a”,这个球就向左移动100个像素。
发表于 2022-5-9 22:59:07 | 显示全部楼层
https://doc.renpy.cn/zh-CN/screens.html?#key
那个,有个小问题要注意一下,输入法请切换成英文,不然可能要疯狂敲空格(
[RenPy] 纯文本查看 复制代码
screen test:
    image "gui/window_icon.png":
        at xmove(x_pos_old, x_pos)
        ypos 300

    key 'K_j' action [SetVariable('x_pos_old', x_pos), SetVariable('x_pos', x_pos-100)]
    key 'K_k' action [SetVariable('x_pos_old', x_pos), SetVariable('x_pos', x_pos+100)]

    text '[x_pos]'
    
transform xmove(old, new):
    xpos old
    linear 0.5 xpos new

default x_pos_old = 400
default x_pos = 400

label start:
    call screen test
回复 支持 抱歉

使用道具 举报

 楼主| 发表于 2022-5-10 08:18:39 | 显示全部楼层
非常感谢您的帮助。转场原来还能这么用的。
回复 支持 抱歉

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|RenPy中文空间 ( 苏ICP备17067825号|苏公网安备 32092302000068号 )

GMT+8, 2024-12-22 18:14 , Processed in 0.112459 second(s), 24 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表