大约有 115 项符合查询结果, 库内数据总量为 30,935 项。 (搜索耗时: 0.0040 秒)
...tate ``` ### 1.多ShaderPass简单示例 下方示例来自于官方多Pass描边示例([demo示例](http://layaair2.ldc2.layabox.com/demo2/?language=ch&category=3d&group=Shader&name=Shader_MultiplePassOutline))。 ##### 第一个Pass使用的着色器: 顶点着色器 `outline.vs` 代码如...
来源: Laya2.0_文档 发布时间: 20210715
...为斜体 */ italic?: number; /** * 行间距 */ leading?: number; /** * 描边宽度 */ stroke?: number; /** * 描边颜色 */ strokeColor?: string; /** * 下划线 */ underline?: number; /** * 下划线颜色 */ underlineColor?:string; /** * 是否自动换行 */ wordWrap?: number; /** * 默认提...
来源: Laya_社区 发布时间: 20171226
...tate ``` ### 1.多ShaderPass简单示例 下方示例来自于官方多Pass描边示例([demo示例](http://layaair2.ldc2.layabox.com/demo2/?language=ch&category=3d&group=Shader&name=Shader_MultiplePassOutline))。 ##### 第一个Pass使用的着色器: 顶点着色器 `outline.vs` 代码如...
来源: Laya2.0_文档 发布时间: 20210714
...置文本字体大小,单位是像素 txt.fontSize = 66; //设置字体描边 txt.stroke = 5; //描边为5像素 txt.strokeColor = '#FFFFFF'; //设置为粗体 txt.bold = true; //设置文本的显示起点位置X,Y txt.pos(60, 100); //设置舞台背景色 Laya.stage.bgColor = '#23238E'; //将文...
来源: Laya_社区 发布时间: 20180914
...a.underlineColor = "#ff0000"; //下划线颜色 this.txtarea.stroke = 5; //描边宽度 this.txtarea.strokeColor = "#000000" ; //描边颜色 this.txtarea.wordWrap = true; //自动换行 this.txtarea.overflow = "scroll"; //文本溢出 this.txtarea.skin = "atlas/comp/textarea.png"; //皮肤 this.txt...
来源: Laya3.0_文档 发布时间: 20240910
... = true; txt.stroke = 5;//字体描边 txt.strokeColor = "#ffffff"; txt.pos(60, 100); Laya.stage.bgColor = "#ffff00"; Laya.stage.addChild(txt); } } } 20...
来源: Laya_社区 发布时间: 20171025
...色),italic设置为true(斜体),padding设置为10,stroke(描边)设置为2,strokecolor为#e4ff20,uderline设置为true。到此,一个多彩的Label已经被制作出来,如图对照属性是否一致 下面来介绍button(图片资源在附件中下载),在此之前...
来源: Laya_社区 发布时间: 20171222
...面文字的粗细程度 类似于css的font-wheight 试了下stroke只是描边 2017-03-10 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 cuixueying 赞同来自: 没有办法设置文字的粗细程度,关于...
来源: Laya_社区 发布时间: 20170310
...已邀请: 与内容相关的链接 提交 1 个回复 hj 赞同来自: 有描边,没有阴影 2018-09-18 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 loew 相关问题 如何设置Sprite的宽高和点击区域? 使用钢体设置...
来源: Laya_社区 发布时间: 20180918
...粗体,功能同bold * color:#ff0000; 字体颜色 * stroke:2px; 字体描边宽度 * strokeColor:#ff0000; 字体描边颜色 * padding:10px 10px 20px 20px; 边缘的距离 * vertical-align:top|bottom|middle; 垂直对齐方式 * align:left|right|center; 水平对齐方式 * line-height:20px; 行...
来源: Laya3.0_文档 发布时间: 20230303