Project1

标题: 使用MTV脚本的问题 [打印本页]

作者: 空山鸣涧    时间: 2008-4-6 23:49
标题: 使用MTV脚本的问题


为什么使用MTV脚本放歌词时后面会有一个小框?(每句歌词都有)以前用不会有这种问题的啊,难道因为是日文歌的原因吗?? [LINE]1,#dddddd[/LINE]版务信息:本贴由楼主自主结贴~
作者: 水迭澜    时间: 2008-4-6 23:50
是因为你用了1.03 = =
这个问题MS确实么有解决方法的说OTZ
作者: 沉影不器    时间: 2008-4-6 23:52
提示: 作者被禁止或删除 内容自动屏蔽
作者: 水迭澜    时间: 2008-4-6 23:56
是么……= =等我搜索下OTZ
这问题太多人问了……
作者: 沉影不器    时间: 2008-4-7 00:05
提示: 作者被禁止或删除 内容自动屏蔽
作者: 空山鸣涧    时间: 2008-4-7 00:14
以下引用沉影不器于2008-4-6 16:05:59的发言:

找到这个了:

http://rpg.blue/viewthread.php?tid=75479



找到:
self.contents.draw_text3(4 + @dx, (font_size + 2)*@dy, font_size, font_size, c)
# dx 为要描绘文字的宽度加法运算
@dx += self.contents.text_size(c).width

改为:
if c == "\000" or c == "\001" or c == "\002" or c == "\n"
c = nil
else
self.contents.draw_text3(4 + @dx, (font_size + 2)*@dy, font_size, font_size, c)
# dx 为要描绘文字的宽度加法运算
@dx += self.contents.text_size(c).width
end
这个貌似不行……
————————————————————
字体大小哪里调?(没用对话加强脚本)
作者: 水迭澜    时间: 2008-4-7 00:19
MTV脚本也是一样的。找找描绘字符的部分就好= =

p.s lim的解答我存了……真是强大{/hx}
作者: 空山鸣涧    时间: 2008-4-7 00:32
  1.   if $game_temp.refresh_times != 1
  2.     if $game_temp.old_text != @temp_text


  3.       self.contents.clear

  4.       self.contents.font.color = Color.new(0,0,0,255)

  5.       self.contents.draw_text(0, 0, 608, 32, $lrc_text, 1)   

  6.       self.contents.font.color = Color.new(255,255,255,255)

  7.       self.contents.draw_text(1, 1, 608, 32, $lrc_text, 1)
  8.       
  9.       @temp_text = $lrc_text
  10.     end
  11.   else

  12.     self.contents.clear
  13.      self.contents.font.color = Color.new(0,0,0,255)
  14.       self.contents.draw_text(0, 0, 608, 32, $lrc_text, 1)   
  15.       self.contents.font.color = Color.new(255,255,255,255)
  16.       self.contents.draw_text(1, 1, 608, 32, $lrc_text, 1)
  17.       @temp_text = $lrc_text
  18.     end
  19.   end
  20.   
  21.   end
复制代码


插哪里?— —在下脚本盲…………
作者: 对不起。    时间: 2008-4-7 00:34
提示: 作者被禁止或删除 内容自动屏蔽




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1