在新窗口中打开脚本页
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
| $VIPArcherScript ||= {};$VIPArcherScript[:menu_slide] = 20141215 class Scene_Base alias vip_slide_post_start post_start def post_start init_slide vip_slide_post_start slide_start end def init_slide ; end def slide_start ; end end class Scene_Menu < Scene_MenuBase def init_slide @command_window.y -= 150 @gold_window.x -= 100 @status_window.x = 260 end def slide_start 10.times do @command_window.y += 15 @gold_window.x += 10 @status_window.x -= 10 Graphics.update end 10.times{|i| @gold_window.x += 5 * Math.cos(i) @command_window.y += 5 * Math.cos(i) Graphics.update} end end class Scene_Item < Scene_ItemBase def init_slide @category_window.x -= 100 @item_window.y += 100 @help_window.y -= 60 end def slide_start 10.times do @category_window.x += 10 @item_window.y -= 10 @help_window.y += 6 Graphics.update end end end
|