So I just was trying to whip up a quick snippet for ccoa's UMS, so that when there is no face specified, game_system.ums_mode = FIT_WINDOW_TO_TEXT, and when there is a face, game_system.ums_mode = NORMAL_MODE. Since I'm hopeless with scripting, I just need to know if I'm doing this correctly. Would this update? Would it cause lag? Is there a more efficient way of writing it? Where should I put the script? I'm hopeless. :dead: Here's the code:
Thanks! :smile:
Code:
if $game_system.face_graphic = ""
game_system.ums_mode = FIT_WINDOW_TO_TEXT
else game_system.ums_mode = NORMAL_MODE
end