제가 PRABS 2.0 을 사용중인데, 첨부파일에서 좌상단에 있는 보행이미지를 캐릭터 얼굴로 바꾸고 싶습니다.
<PR-HUD 343-362까지 구문>
def update_bitmap
if @tile_id != @character.tile_id or
@character_name != @character.character_name or
@character_index != @character.character_index
@tile_id = @character.tile_id
@character_name = @character.character_name
@character_index = @character.character_index
self.bitmap = Cache.character(@character_name)
sign = @character_name[/^[!$]./]
if sign != nil and sign.include?('$')
@cw = bitmap.width / 3
@ch = bitmap.height / 4
else
@cw = bitmap.width / 12
@ch = bitmap.height / 8
end
self.ox = @cw / 2
self.oy = @ch / 2
end
end
제가 생각하기에는 이 부분 같은데....어떻게 스크립트를 만지면 돨까요? character_name를 face_name 바꾸니 에러가 나네요.
아시는분들은 도와주세요 ㅠ_ㅠ