赞 | 90 |
VIP | 350 |
好人卡 | 311 |
积分 | 101 |
经验 | 150139 |
最后登录 | 2024-7-17 |
在线时间 | 5020 小时 |
Lv4.逐梦者 (版主) 无限の剣制
- 梦石
- 0
- 星屑
- 10074
- 在线时间
- 5020 小时
- 注册时间
- 2013-2-28
- 帖子
- 5030
|
本帖最后由 VIPArcher 于 2015-3-1 21:44 编辑
35113329 发表于 2015-3-1 21:30
有可以转换脚本的方法吗?
有人写个一个略坑的类似脚本- #==============================================================================
- # ■ 弹性滚动地图 V 1.00 BY SLICK
- #------------------------------------------------------------------------------
- # 处理主角的类。事件启动的判定、以及地图的滚动等功能。
- # 本类的实例请参考 $game_player。
- # 我:。。。这个黄金版已经被改的面目全非了
- #==============================================================================
- class Game_Player < Game_Character
-
- MOVESPEA = 0.265625#这数值。。。囧
-
- def update_scroll(last_real_x, last_real_y)
- ax1 = $game_map.adjust_x(last_real_x)
- ay1 = $game_map.adjust_y(last_real_y)
- ax2 = $game_map.adjust_x(@real_x)
- ay2 = $game_map.adjust_y(@real_y)
- movespeb = (2 ** (@move_speed+1))*MOVESPEA
- movesped = movespeb / Graphics.width
- movespec = movespeb / Graphics.height
- tmp=center_x-ax2
- $game_map.scroll_left(movesped*tmp) if tmp>0
- $game_map.scroll_right(-movesped*tmp) if tmp<0
- tmp=center_y-ay2
- $game_map.scroll_up(movespec*tmp) if tmp>0
- $game_map.scroll_down(-movespec*tmp) if tmp<0
- end
- end
复制代码 莫追问使用这个脚本遇到的任何问题,应该我不玩这个脚本 |
评分
-
查看全部评分
|