#------------------------------------------------
# 제작자 : 디자이너
# 설명 : 타이틀 화면에 윈도우를 표시해서 제작자 정보 표시
#------------------------------------------------
class Window_Steps < Window_Base
def initialize
super(0, 0, 200, 64)
self.contents = Bitmap.new(width - 32, height - 32)
refresh
end
def refresh
self.contents.clear
self.contents.font.color = system_color
self.contents.draw_text(4, 0, 120, 32, "제작자 : 디자이너")
end
end
# 제작자 : 디자이너
# 설명 : 타이틀 화면에 윈도우를 표시해서 제작자 정보 표시
#------------------------------------------------
class Window_Steps < Window_Base
def initialize
super(0, 0, 200, 64)
self.contents = Bitmap.new(width - 32, height - 32)
refresh
end
def refresh
self.contents.clear
self.contents.font.color = system_color
self.contents.draw_text(4, 0, 120, 32, "제작자 : 디자이너")
end
end
이 스크립트를 메인 위에 넣어주시고,
Scene_Title 여기 33째 줄에
Window_Steps.new
이걸 넣어주세요.
그리고 제작자를 바꿀려면
(4, 0, 120, 32, "제작자 : 디자이너")
여기에 제작자 : 디자이너를 지우고
여기에 제작자 : 디자이너를 지우고
제작자 이름을 써주시면 됩니다.