大约有 27 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0038 秒)
基础文本(Text)1. LayaAir IDE中使用Text1.1 创建Text1.2 属性介绍1.3 Syntax属性1.4 脚本控制Text2. 代码创建Text基础文本(Text) Text继承于Sprite,是静态文本的基础组件。这里我们介绍一下Text专属的组件属性。 1. LayaAir IDE中使用Text 1.1 ...
来源: Laya3.0_文档 发布时间: 20241014
...是只能看,不能编辑修改的基础文本。LayaAirIDE中提供了Text和Label这两种基础的显示文本组件。 1.1、文本的底层渲染机制 LayaAir引擎在文本的底层渲染上,有两种方式。 分别是Text文本类的文本统一提交方式,和Graphics类的fillText...
来源: Laya3.0_文档 发布时间: 20241014
...下述示例演示了如何通过代码创建HScrollBar,并通过一个Text组件显示滚动条的value值。开发者可以自己通过代码设置HScrollBar,创建出符合自己需要的HScrollBar。 示例代码: const { regClass, property } = Laya; @regClass() export class UI_HScrollBar ...
来源: Laya3.0_文档 发布时间: 20241014
...下述示例演示了如何通过代码创建VScrollBar,并通过一个Text组件显示滚动条的value值。开发者可以自己通过代码设置VScrollBar,创建出符合自己需要的VScrollBar。 示例代码: const { regClass, property } = Laya; @regClass() export class UI_VScrollBar ...
来源: Laya3.0_文档 发布时间: 20241014
...文本(根据电脑性能而定,本例为10000): class Test { private text:Laya.Text; constructor() { Laya.init(550,400,Laya.WebGL); Laya.Stat.show(); var textBox=new Laya.Sprite(); for(var i=0;i<10000;i++) { this.text=new Laya.Text(); this.text.text=(Math.random()*100).toFixed(0); this.text....
来源: Laya3.0_文档 发布时间: 20241014
...后,将ProgressBar拖入到其暴露的属性入口中。再添加一个Text组件,用于描述加载进度。需要添加如下的示例代码: const { regClass, property } = Laya; @regClass() export class NewScript extends Laya.Script { @property({ type: Laya.ProgressBar }) public progressBa...
来源: Laya3.0_文档 发布时间: 20241014
...示获取旋转方位信息: class Gyroscope_Sample { private info: Laya.Text; constructor() { Laya.init(550, 400); this.info = new Laya.Text(); this.info.fontSize = 50; this.info.color = "#FFFFFF"; this.info.size(Laya.stage.width, Laya.stage.height); Laya.stage.addChild(this.info); Laya.Gyroscope...
来源: Laya3.0_文档 发布时间: 20230303
...;> 1; //显示的字符串 var demoString:string = "LayaBox"; var letterText:Laya.Text; //根据"LayaBox"字符串长度创建单个字符,并对每个单独字符使用缓动动画 for(var i:number = 0,len:number = demoString.length;i<len;++i){ //从"LayaBox"字符串中逐个提出单个...
来源: Laya3.0_文档 发布时间: 20241014
...中拖拽添加。 (图1-1) Label组件拖放到编辑区后,设置 text 属性的值为 LayaAir IDE 后的显示效果如下: (图1-2) 1.2 Label 属性 (图1-3) 属性 功能说明 text 文本的实际内容 font 文本的字体名称,例如:Microsoft YaHei,这里可以手动...
来源: Laya3.0_文档 发布时间: 20241014
...名", tips: "这是一个文本对象,只能输入文本哦" }) public text1: string = ""; //装饰器属性类型的简写方式,适用于只定义类型的需求 @property(String) public text2: string = ""; constructor() { super(); } } @property()是IDE识别组件属性并显示到IDE属性...
来源: Laya3.0_文档 发布时间: 20241014