Project1
标题: 怎么让text在某个窗口居中 【已解决】 [打印本页]
作者: sq333333 时间: 2017-9-7 16:04
标题: 怎么让text在某个窗口居中 【已解决】
本帖最后由 sq333333 于 2017-9-9 16:25 编辑
小白自己尝试修改了一下脚本,
不知道文字在窗口居中效果怎么写,
或者让窗口的宽度根据文字长度自动变化…
还有怎么让显示的窗口能变成系统对话框那种暗色背景的。
请大神多多指点!
作者: 魔法丶小肉包 时间: 2017-9-8 18:27
第一种情况:使用显示文字
1.打几个空格就行了
2.
class Window_Message < Window_Base
def fiber_main
update_width
$game_message.visible = true
update_background
update_placement
loop do
process_all_text if $game_message.has_text?
process_input
$game_message.clear
@gold_window.close
Fiber.yield
break unless text_continue?
end
close_and_wait
$game_message.visible = false
@fiber = nil
end
def update_width
self.width = $game_message.texts[0].size * 30
end
end
class Window_Message < Window_Base
def fiber_main
update_width
$game_message.visible = true
update_background
update_placement
loop do
process_all_text if $game_message.has_text?
process_input
$game_message.clear
@gold_window.close
Fiber.yield
break unless text_continue?
end
close_and_wait
$game_message.visible = false
@fiber = nil
end
def update_width
self.width = $game_message.texts[0].size * 30
end
end
3.选择暗色背景
第二种情况:自己写窗口
1.
text = "哈哈哈哈哈"
draw_text(x, y, width, line_height, text,1)
text = "哈哈哈哈哈"
draw_text(x, y, width, line_height, text,1)
也同样可以自己打空格
2.
self.width = text.size * 30
self.width = text.size * 30
3.
def create_back_bitmap
@back_bitmap = Bitmap.new(width, height)
rect1 = Rect.new(0, 0, width, 12)
rect2 = Rect.new(0, 12, width, height - 24)
rect3 = Rect.new(0, height - 12, width, 12)
@back_bitmap.gradient_fill_rect(rect1, back_color2, back_color1, true)
@back_bitmap.fill_rect(rect2, back_color1)
@back_bitmap.gradient_fill_rect(rect3, back_color1, back_color2, true)
end
def back_color1
Color.new(0, 0, 0, 160)
end
def back_color2
Color.new(0, 0, 0, 0)
end
def create_back_sprite
@back_sprite = Sprite.new
@back_sprite.bitmap = @back_bitmap
@back_sprite.visible = true
@back_sprite.z = z - 1
end
def dispose
super
@back_bitmap.dispose
@back_sprite.dispose
end
def create_back_bitmap
@back_bitmap = Bitmap.new(width, height)
rect1 = Rect.new(0, 0, width, 12)
rect2 = Rect.new(0, 12, width, height - 24)
rect3 = Rect.new(0, height - 12, width, 12)
@back_bitmap.gradient_fill_rect(rect1, back_color2, back_color1, true)
@back_bitmap.fill_rect(rect2, back_color1)
@back_bitmap.gradient_fill_rect(rect3, back_color1, back_color2, true)
end
def back_color1
Color.new(0, 0, 0, 160)
end
def back_color2
Color.new(0, 0, 0, 0)
end
def create_back_sprite
@back_sprite = Sprite.new
@back_sprite.bitmap = @back_bitmap
@back_sprite.visible = true
@back_sprite.z = z - 1
end
def dispose
super
@back_bitmap.dispose
@back_sprite.dispose
end
如果是第二种情况(自己写窗口),上面已经说了大概的思路
这里还是举个例子:
class A < Window_Base
def initialize
super(0,0,544,120)
create_back_bitmap
create_back_sprite
self.opacity = 0
refresh
end
def refresh
text = "哈哈哈哈哈"
self.width = text.size * 30
draw_text(x, y, width, line_height, text,1)
end
def create_back_bitmap
@back_bitmap = Bitmap.new(width, height)
rect1 = Rect.new(0, 0, width, 12)
rect2 = Rect.new(0, 12, width, height - 24)
rect3 = Rect.new(0, height - 12, width, 12)
@back_bitmap.gradient_fill_rect(rect1, back_color2, back_color1, true)
@back_bitmap.fill_rect(rect2, back_color1)
@back_bitmap.gradient_fill_rect(rect3, back_color1, back_color2, true)
end
def back_color1
Color.new(0, 0, 0, 160)
end
def back_color2
Color.new(0, 0, 0, 0)
end
def create_back_sprite
@back_sprite = Sprite.new
@back_sprite.bitmap = @back_bitmap
@back_sprite.visible = true
@back_sprite.z = z - 1
end
def dispose
super
@back_bitmap.dispose
@back_sprite.dispose
end
end
class A < Window_Base
def initialize
super(0,0,544,120)
create_back_bitmap
create_back_sprite
self.opacity = 0
refresh
end
def refresh
text = "哈哈哈哈哈"
self.width = text.size * 30
draw_text(x, y, width, line_height, text,1)
end
def create_back_bitmap
@back_bitmap = Bitmap.new(width, height)
rect1 = Rect.new(0, 0, width, 12)
rect2 = Rect.new(0, 12, width, height - 24)
rect3 = Rect.new(0, height - 12, width, 12)
@back_bitmap.gradient_fill_rect(rect1, back_color2, back_color1, true)
@back_bitmap.fill_rect(rect2, back_color1)
@back_bitmap.gradient_fill_rect(rect3, back_color1, back_color2, true)
end
def back_color1
Color.new(0, 0, 0, 160)
end
def back_color2
Color.new(0, 0, 0, 0)
end
def create_back_sprite
@back_sprite = Sprite.new
@back_sprite.bitmap = @back_bitmap
@back_sprite.visible = true
@back_sprite.z = z - 1
end
def dispose
super
@back_bitmap.dispose
@back_sprite.dispose
end
end
作者: sq333333 时间: 2017-9-8 18:57
魔法丶小肉包 发表于 2017-9-8 18:27
第一种情况:使用显示文字
1.打几个空格就行了
2.
谢谢肉包大神,一直在帮我们小白。 真舍不得6R和你们这些大神呀。不知道将来论坛会搬去哪里……
作者: sq333333 时间: 2017-9-8 21:31
本帖最后由 sq333333 于 2017-9-8 21:33 编辑
这个图片是我自己修改的显示技能名,因为技能名字有长有短,所以有时无法正常显示,我还是不会举一反三(完全没有基础…)。所以…还请大神在这个基础上加以修改,使窗口可以适应技能名字长短并且始终居中显示,或者直接改成暗色背景居中显示技能名呢?(有点得寸进尺的感觉……)
-
IMG_20170908_212445.jpg
(114.72 KB, 下载次数: 18)
作者: sq333333 时间: 2017-9-9 16:25
谢谢肉包,已经解决啦!
欢迎光临 Project1 (https://rpg.blue/) |
Powered by Discuz! X3.1 |