赞 | 90 |
VIP | 350 |
好人卡 | 311 |
积分 | 101 |
经验 | 150139 |
最后登录 | 2024-7-17 |
在线时间 | 5020 小时 |
Lv4.逐梦者 (版主) 无限の剣制
- 梦石
- 0
- 星屑
- 10074
- 在线时间
- 5020 小时
- 注册时间
- 2013-2-28
- 帖子
- 5030
|
1397308421 发表于 2015-5-23 21:43
我用了站内的脚本va可以使用xp行走图但是我的行走图格式 图片的2 和 6 方向是反的求教 怎么设 ... - class Sprite_Character < Sprite_Base
- def update_src_rect
- if @tile_id == 0
- index = @character.character_index
- pattern = @character.pattern < 3 ? @character.pattern : 1
- sx = (index % 4 * 3 + pattern) * @cw
- direction = case @character.direction
- when 6 then 8;when 8 then 6; else @character.direction end
- sy = (index / 4 * 4 + (direction - 2) / 2) * @ch
- self.src_rect.set(sx, sy, @cw, @ch)
- end
- end
- end
复制代码 新建一个脚本页插入。因为是方法覆盖,请不要指望兼容性 |
|