赞 | 5 |
VIP | 0 |
好人卡 | 0 |
积分 | 11 |
经验 | 11099 |
最后登录 | 2024-9-19 |
在线时间 | 324 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 1090
- 在线时间
- 324 小时
- 注册时间
- 2017-1-24
- 帖子
- 122
|
我真的不懂你要在哪个场景里显示图片.不过在地图显示图片的话,还可以用脚本指令代替
显示图片:
$game_screen.pictures[number].show(name, origin, x, y, zoom_x, zoom_y, opacity, blend_type)
移动图片:
$game_screen.pictures[number].move(duration, origin, x, y, zoom_x, zoom_y, opacity, blend_type)
其中:
# name : 文件名
# origin : 原点
# x : X 坐标
# y : Y 坐标
# zoom_x : X 方向放大率
# zoom_y : Y 方向放大率
# opacity : 不透明度
# blend_type : 合成方式
# duration : 时间
旋转图片:
$game_screen.pictures[number].rotate(速度)
删除图片:
$game_screen.pictures[number].erase
例如,我要在地图左上角显示一张名字为"忍者"的图片,放大到200%.可以这样:$game_screen.pictures[10].show("忍者",
0, 0, 0, 200, 200, 255, 0) |
|