halfling2
Breakfast Squid
- 197
- Posts
- 19
- Years
- Age 33
- A dimension of pure dooky!
- Seen Feb 25, 2011
Easy, you create a status effect that lowers speed! I think one already exists, but if you mean animation then you need to tell me how to do that.
and heres lines 60 through 79???? 'Scene_Menu'? 69 ??? name error
Undefined local varible or method `update_Command" for # <scene_Menu:0x453b1d0
What do i have to change?#--------------------------------------------------------------------------
# ● フレーム更新
#--------------------------------------------------------------------------
def update
# ウィンドウを更新
@spriteset.update
@command_window.update
# コマンドウィンドウがアクティブの場合: update_command を呼ぶ
if @command_window.active
update_command
return
end
# ステータスウィンドウがアクティブの場合: update_status を呼ぶ
if @status_window.active
update_status
return
end
end