大约有 386 项符合查询结果, 库内数据总量为 31,580 项。 (搜索耗时: 0.0059 秒)
Laya_社区(274) Laya2.0_文档(23) Laya3.0_api(19) Laya2.0_api(17) Laya2.0_示例(15) Laya3.0_文档(14) Laya_示例(13) laya_api(11)
...ight displayWidth displayedInStage drawCallOptimize editable filters focus font fontSize globalRotation globalScaleX globalScaleY graphics height hideFlags hitArea html htmlParseOptions is3D italic leading lines mask maxChars maxScrollX maxScrollY maxWidth mouseEnabled mouseX mouseY multiline native...
来源: Laya3.0_api 发布时间: 20231115
... } else if (type === Loader.FONT) { if (!data._source) { this._data = data; this.event(Event.PROGRESS, 0.5); ...
来源: Laya_社区 发布时间: 20201130
...EN; this.text.color = "#FFFFFF"; this.text.font = "Impact"; this.text.fontSize = 20; this.text.borderColor = "#FFFF00"; this.text.x = Laya.stage.width / 2; Laya.stage.addChild(this.text); } } //激活启...
来源: Laya_社区 发布时间: 20190531
...s.text.overflow = Laya.Text.HIDDEN; this.text.color = "#FFFFFF"; this.text.font = "Impact"; this.text.fontSize = 24; this.text.x = (Laya.stage.width / 5) * 2; Laya.stage.addChild(this.text); Laya.stage.on(Laya.Event.MOUSE_DOWN, this, this.onMouseDown); let building: Laya.Sprite3D = scene.getChildByN...
来源: Laya_社区 发布时间: 20200917
...。Sprite focus : Boolean 表示焦点是否在此实例上。 TextInput font : String 文本的字体名称,以字符串形式表示。 默认值为:"Arial",可以通过Font.defaultFont设置默认字体。 如果运行时系统找不到设定的字体,则用系统默认的字体渲染文...
来源: laya_api 发布时间: 20170929
...调试信息,了解如何使用"; this.text.color = "#FFFFFF"; this.text.font = "Impact"; this.text.fontSize = 25; this.text.width = 800; this.text.anchorX = 0.5; this.text.align = "center"; this.text.y = 20; this.text.centerX = 0; this.owner.addChild(this.text); } /** * 发起HTTP连接请求 */ ...
来源: Laya3.0_文档 发布时间: 20251010
...er = new Laya.Text(); letter.text = char; letter.color = "#ffffff"; letter.font = "Impact"; letter.fontSize = 180; Laya.stage.addChild(letter); return letter; } ``` 代码运行时,由于update回调是每一帧都在执行,所以在缓动的过程中,有一种闪光字的效果。如动图8...
来源: Laya2.0_文档 发布时间: 20210715
...xt = new Laya.Text(); letter.text = char; letter.color = "#ffffff"; letter.font = "Impact"; letter.fontSize = 180; Laya.stage.addChild(letter); return letter; } } new TweenDemo(); ``` 代码运行时,由于update回调是每一帧都在执行,所以在缓动的过程中,有一种闪光字的...
来源: Laya2.0_文档 发布时间: 20210715
...er:Text = new Text(); letter.text = char; letter.color = "#FFFFFF"; letter.font = "Impact"; letter.fontSize = 180; Laya.stage.addChild(letter); return letter; } } } ``` 代码运行时,由于update回调是每一帧都在执行,所以在缓动的过程中,有一种闪光字的效果。如动...
来源: Laya2.0_文档 发布时间: 20210715
... height="100%">' + '<div xmlns="http://www.w3.org/1999/xhtml" style="font-size:40px">' + '<em>I</em> like ' + '<span style="color:white; text-shadow: 0px 1px 0px #999, 0px 2px 0px #888, 0px 3px 0px #777, 0px 4px 0px #666, 0px 5px 0px #555, 0px 6px 0px #444, 0px 7px 0px #333, ...
来源: Laya3.0_文档 发布时间: 20251010