QQ图片20210504210237.png (728.05 KB, 下载次数: 9)
#-------------------------------------------------------------------------- # ● 设置文本 # text : 窗口显示的字符串 # align : 对齐方式 (0..左对齐、1..中间对齐、2..右对齐) #-------------------------------------------------------------------------- def set_text(text, align = 0) # 如果文本和对齐方式的至少一方与上次的不同 if text != @text or align != @align # 再描绘文本 self.contents.clear if $scene.is_a?(Scene_Battle) self.contents.font.color = Color.new(255, 255, 255, 255) #这里更改颜色 RGBA else self.contents.font.color = normal_color end self.contents.draw_text(4, 0, self.width - 40, 32, text, align) @text = text @align = align @actor = nil end self.visible = true end
欢迎光临 Project1 (https://rpg.blue/) | Powered by Discuz! X3.1 |