加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 miantouchi 于 2019-3-2 21:46 编辑
#在右下角写添加字 封神榜2 @text = Sprite.new @text.bitmap = Bitmap.new(200,100) @text.bitmap.draw_text(0,0, 200, 100, "封神榜2" ) @text.x = 540 @text.y = 410 #改“封神榜2”字体颜色,下面这段是我自己加的,没反应 @text.color = Color.new(235,250,255,255) @text.color.set(235,250,255,255)
#在右下角写添加字 封神榜2
@text = Sprite.new
@text.bitmap = Bitmap.new(200,100)
@text.bitmap.draw_text(0,0, 200, 100, "封神榜2" )
@text.x = 540
@text.y = 410
#改“封神榜2”字体颜色,下面这段是我自己加的,没反应
@text.color = Color.new(235,250,255,255)
@text.color.set(235,250,255,255)
最近在看某侠脚本教程,跟着视频学会了在开始页面添加字了,
我又照猫画虎尝试着改下字体颜色,但是没啥效果,
请帮我看看,我这么写错在哪了,谢谢!
我的大概写法是,@text.color 用Color生成实例,然后设置颜色 |