大约有 1,385 项符合查询结果, 库内数据总量为 30,789 项。 (搜索耗时: 0.0049 秒)
Laya_社区(1080) Laya2.0_文档(80) Laya3.0_api(75) Laya_示例(42) Laya2.0_示例(40) Laya3.0_文档(27) Laya2.0_api(22) laya_api(19)
... 分享:自定义事件派发与侦听(A页面派发 B页面侦听) TextInput重写onFocus和onBlur事件监听不到 List 组件列表渲染异常 Animation如何加点击事件 btn 鼠标移动上去默认文本颜色是绿色,我想换成其他颜色,如何操作? 关于使用matterjs...
来源: Laya_社区 发布时间: 20220424
...,都放在了和鱼是同一图集里面,但是 这个显示 价格的 Text ,直接引起 drawcall 暴增,这是为啥了? fish.scoreItem = new Laya.Image(); fish.scoreItem.skin = "assets/ui_imgs/img_10103.png"; fish.scoreItem.sizeGrid = '0,10,0,10'; var price = this.getFishVal('...
来源: Laya_社区 发布时间: 20180516
... // 系统自带 var txt:Text = new Text(); txt.fontSize = 18; txt.text = "角色名10920-"; txt.color = "#ffffff"; txt.str...
来源: Laya_社区 发布时间: 20180212
...le is not defined. 代码如下: package { import laya.display.Text; public class LayaAirTest { public function LayaAirTest() { Laya.init(600, 300); var txt:Text = new Text(); txt.tex...
来源: Laya_社区 发布时间: 20170429
...ment Index Constructors constructor Properties _attrs name obj space style text type pool Methods fetchAttributes getAttr getAttrBool getAttrFloat getAttrInt getAttrString reset setAttr getFromPool returnToPool Constructors constructor new HtmlElement(): HtmlElement Defined in laya/html/HtmlElement....
来源: Laya3.0_api 发布时间: 20231115
...stroy(destroyChild); this._bitmap && this._bitmap.destroy(); this._text && this._text.destroy(destroyChild); this._bitmap = null; this._text = null; this._clickHandler = null; this._labelColors = this._sources = this._strokeColors = null; }destroy方法,对 _clickHandler 置空处...
来源: Laya_社区 发布时间: 20200514
... getRes出来类型为string 能转换成数组吗 Laya.loader.load("res/text.txt", Handler.create(this, onAssetLoaded1), null, Loader.TEXT); var pic1 = Loader.getRes("res/2D特效/text.txt"); console.log(typeof pic1); 输出的类型为string 2017-06-20 添加评论 免费帖 --> 分享 微博 QZON...
来源: Laya_社区 发布时间: 20170620
...取的用户名(该用户名有emoji表情), 然后赋值到label的text上, 赋值之后我用alert(label.text)显示出来的值是带有emoji表情的,但是label上显示就没有 2017-03-29 0 3 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先...
来源: Laya_社区 发布时间: 20170329
... public static var _classMap:Object = {'Sprite': 'laya.display.Sprite', 'Text': 'laya.display.Text','animation': 'laya.display.Animation', 'Animation': 'laya.display.Animation', 'Skeleton': 'laya.ani.bone.Skeleton', 'Particle2D': 'laya.particle.Particle2D', 'div': 'laya.html.dom.HTMLDivElement', 'p'...
来源: Laya_社区 发布时间: 20180312
...src下新建文件HelloWorld.as代码如下package { import laya.display.Text; /** * ... * @author */ public class HelloWorld{ public function HelloWorld(){ //创建舞台 Laya.init(600, 300);//舞台默认背景色是黑色的 var txt:Text = new Text(); txt.text = "Hello, World!"; //设置文本颜...
来源: Laya_社区 发布时间: 20180914