|
于是这个是p2,上一讲在此:
http://bbs.islga.org/read.php?ti ... =1&toread=1#tpc
这次我们让Text小朋友学画画。希望大家多多帮忙测试和补充。
刚才试出的一些标签:
<s></s>用来将字符缩小,应该是small的意思
奇怪的是用<l></l>却无法用来将字符放大……但是<l>标签本身也不会显示出来,这代表<l>标记是存在的。因为如果是不存在的标记,那么标记本身会显示出来,比如<b>.也就是说<l>标记存在,但是不知道参数该怎么写。
<h></h>用来将字符变成蓝色,应该是head的意思。
[codes=galaxy]
str="<s>Small</s>";
UIDisplayMessage(PlayerGroupAll(), 4, StringToText(str));
str="<c>C?</c>";
UIDisplayMessage(PlayerGroupAll(), 4, StringToText(str));
str="<h2>Head</h2>";
UIDisplayMessage(PlayerGroupAll(), 4, StringToText(str));
str="Normal";
UIDisplayMessage(PlayerGroupAll(), 4, StringToText(str));
[/codes]
结果如下
然后下面是重头了:
显示图片:
使用<img>标签,其中包含的path属性用来指定图片路径:
注意:就如我上一贴中提到的那样,图片路径的分割线\必须写两个才有效果
[codes=galaxy]
str="Image:<img path=\"Assets\\Textures\\btn-ability-zerg-sporecloud.dds\" />";
UIDisplayMessage(PlayerGroupAll(), 4, StringToText(str));
[/codes]
显示结果
连图片都能显示,这个还叫字符输出么?!
顺便补充一张图片 和字符串一起显示的结果
还没完,利用color属性以及width heigt属性,图片还能调整颜色和尺寸哦。
color的格式和<c> 的val格式相同。
[codes=galaxy]
str="Image:<img color=\"ff0000\" path=\"Assets\\Textures\\btn-ability-zerg-sporecloud.dds\" />";
UIDisplayMessage(PlayerGroupAll(), 4, StringToText(str));
[/codes]
依然是RRGGBB的形式,如上这样输出就是一张红色的图片
然后width和height属性
[codes=galaxy]
str="Image:<img color=\"ff0000\" width=\"50\" height=\"300\" path=\"Assets\\Textures\\btn-ability-zerg-sporecloud.dds\" />";
UIDisplayMessage(PlayerGroupAll(), 4, StringToText(str));
[/codes]
|
|