- Joined
- Apr 30, 2012
- Messages
- 216
- Reaction score
- 35
- First Language
- Spanish
- Primarily Uses
Sorry to bother yourselves,i found a snippet made by Ventwig that allows you to put faces in actor command window. The problem is present when you try to add new commands,this is what happens when you scroll the window:
As you can see,the face doesnt scrolls along with the commands... Excuse me for my bad English and greetings from Argentina.
Pd: Here is the snippet
As you can see,the face doesnt scrolls along with the commands... Excuse me for my bad English and greetings from Argentina.
Pd: Here is the snippet
Code:
#============================================================================#Face in Actor Command Window#By Ventwig#Made for RydiaMis#================================================ class Window_ActorCommand < Window_Command alias face_command_setup setup def setup(actor) face_command_setup(actor) draw_face_command end def window_width return 244 end def item_rect(index) rect = Rect.new rect.width = item_width/2 rect.height = item_height rect.x = index % col_max * (item_width + spacing) + item_width/2 rect.y = index / col_max * item_height rect end def draw_face_command draw_actor_face(@actor, 0, 0, enabled = true) endend class Scene_Battle < Scene_Base def update_info_viewport move_info_viewport(0) if @party_command_window.active move_info_viewport(220) if @actor_command_window.active move_info_viewport(64) if BattleManager.in_turn? end end
Last edited by a moderator:
