Project1

标题: 为啥shift不能加速啊 [打印本页]

作者: 暗夜黑影师    时间: 2020-3-29 20:28
标题: 为啥shift不能加速啊
怎么shift加速  只能走吗?
作者: 暴走杀神    时间: 2020-3-30 01:46
是的,不能加速,你可以找按键加速的脚本
作者: 89444640    时间: 2020-3-30 06:31
因为加速脚本默认按键是空格。
作者: 暗夜黑影师    时间: 2020-3-30 20:43
在哪里找这种脚本啊?站内能找到吗?
作者: 89444640    时间: 2020-3-31 10:43
暗夜黑影师 发表于 2020-3-30 20:43
在哪里找这种脚本啊?站内能找到吗?

我这个改造过好多,跑动会切换8帧跑动图像,有对应足音播放速度切换,各种不同地形移动加速减速,
不需要的话把对应的段落删了就行了。
  1. #==============================================================================
  2. # ■ Game_Player 本脚本来来源不详
  3. #==============================================================================
  4. class Game_Player
  5. #--------------------------------------------------------------------------
  6. # ● フレーム更新
  7. #--------------------------------------------------------------------------
  8. alias xrxs25_update update
  9. def update
  10.    # 移動中、イベント実行中、移動ルート強制中、
  11.    # メッセージウィンドウ表示中のいずれでもない場合
  12.   if !$game_switches[6] #6号开关打开,关闭空格键行走加速。
  13.    unless moving? or $game_system.map_interpreter.running? or
  14.           @move_route_forcing or $game_temp.message_window_showing
  15.      if Input.press?(Input::C) and 移动中
  16.        if @character_name.include?("【走动】") and K(7)
  17.          改图(@character_name.gsub("【走动】","【跑动】□8"),0,@direction)
  18.          k(334)#跑动中足音播放变慢开关,自动控制
  19.          @step_anime = true
  20.        end
  21.        # 速度の変更
  22.        @move_speed = 5 - $game_variables[18]#减对应变量数值,减速移动,沼泽、雪地
  23.      else
  24.        if @character_name.include?("【跑动】") and K(7)
  25.          改图(@character_name.gsub("【跑动】□8","【走动】"),0,@direction)
  26.          k(-334)
  27.          @step_anime = false
  28.        end
  29.        @move_speed = 4 - $game_variables[18]
  30.      end
  31.    end
  32. end
  33.    # 呼び戻す
  34. xrxs25_update
  35. end
  36. end
复制代码

作者: 暗夜黑影师    时间: 2020-3-31 22:41
89444640 发表于 2020-3-31 10:43
我这个改造过好多,跑动会切换8帧跑动图像,有对应足音播放速度切换,各种不同地形移动加速减速,
不需要 ...

不明觉厉   谢谢了 虽然看不懂




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1