XP 스크립트

#==============================================================================
# ■ Bitmap
#------------------------------------------------------------------------------
#  Bitmap 클래스(class) 방법(method) 추가
#==============================================================================

class Bitmap
  #--------------------------------------------------------------------------
  # ● 테두리 두르기 문자 묘화
  #--------------------------------------------------------------------------
  def draw_frame_text(x, y, width, height, string, align = 0,
      frame_color = Color.new(0, 0, 0))
    # 원래의 색을 보존해 둔다
    origin_color = font.color.dup
    # 테두리 두르기
    font.color = frame_color
    draw_text(x - 1, y - 1, width, height, string, align)
    draw_text(x - 1, y + 1, width, height, string, align)
    draw_text(x + 1, y - 1, width, height, string, align)
    draw_text(x + 1, y + 1, width, height, string, align)
    # 원래의 색에 되돌리고 묘화
    font.color = origin_color
    draw_text(x, y, width, height, string, align)
  end
  #--------------------------------------------------------------------------
  # ● 영 문자 묘화
  #--------------------------------------------------------------------------
  def draw_shadow_text(x, y, width, height, string, align = 0,
      shadow_color = Color.new(0, 0, 0))
    # 원래의 색을 보존해 둔다
    origin_color = font.color.dup
    # 영 묘화
    font.color = shadow_color
    draw_text(x + 2, y + 2, width, height, string, align)
    # 원래의 색에 되돌리고 묘화
    font.color = origin_color
    draw_text(x, y, width, height, string, align)
  end
end

Who's 백호

?

이상혁입니다.

http://elab.kr

Comment '7'

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
공지 스크립트 자료 게시물 작성시 주의사항 습작 2012.12.24 6205
68 메뉴 메뉴 단축키 스크립트 14 백호 2009.02.22 2961
67 메뉴 Mog-메뉴업그레이드? ps인간 2009.01.23 2948
66 메뉴 수정, 추가 링메뉴 10 file 백호 2009.02.22 2913
65 메뉴 링메뉴 New 9 sdjfl465 2008.09.27 2862
64 메뉴 메뉴바꾸기 4 file ureazy 2012.07.23 2847
63 메뉴 메뉴화면 변경 스크립트 1 file 백호 2009.02.21 2772
62 메뉴 Etude87_Horror_Menu_XP ver.1.1 15 file 습작 2012.08.04 2762
61 메뉴 CoaMenuVer0.1 10 file 코아 코스튬 2010.09.25 2702
60 메뉴 KGC스크립트모음 12 file 키라링 2009.01.18 2688
59 메뉴 각 메뉴를 호화롭게 하는 스크립트 3 file 백호 2009.02.21 2618
» 메뉴 혹시있나해서-_-.. 대화창에 테두리치기 스크립트 7 백호 2009.02.22 2596
57 메뉴 1인용 메뉴 스크립트 6 WMN 2008.03.17 2450
56 메뉴 L's Custom Menu #3: 1인용 메뉴 Revision 1 3 Alkaid 2010.09.12 2363
55 메뉴 자세항 개인 상태화면 8 아방스 2009.01.12 2361
54 메뉴 메뉴 변경 스크립트 2 file 백호 2009.02.21 2360
53 메뉴 자작 커스텀 메뉴(데모 첨부) 3 백호 2009.02.22 2348
52 메뉴 Breath Of Fire 스타일의 메뉴 3 file 백호 2009.02.21 2343
51 메뉴 자세한 캐릭터 정보표시 스크립트 버전2 5 아방스 2009.01.12 2329
50 메뉴 제가 쓰는 메뉴 14 file 백호 2009.02.21 2319
49 메뉴 메뉴 화면 변경 스크립트 file 백호 2009.02.21 2237
Board Pagination Prev 1 2 3 4 5 Next
/ 5