大约有 2,023 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0058 秒)
Laya_社区(1419) Laya2.0_文档(233) Laya_示例(141) Laya2.0_示例(117) Laya3.0_api(61) Laya3.0_文档(39) Laya2.0_api(7) laya_api(6)
... key; for (key in tileDataDic) { this._tileProperties2[key] = tileDataDic[key]; } } 修正后代码: addTileProperties(tileDataDic,firstgid = 0) { var key; for (key in tileDataDic) { ...
来源: Laya_社区 发布时间: 20220315
...s Sprite { private var testPan:Sprite; public function MainUi() { super(); this.graphics.drawRect(0,0,500,500,"#fff0cc"); testPan = new Sprite(); testPan.name = "testPan"; this.addChild( testPan ); testPan.pos( 300,300); testPan.graphics.drawRect(0,0,90,100,"#faaff0"); testPan.on(Event.CLICK,this,on...
来源: Laya_社区 发布时间: 20161124
LoginView.super(this);这样调用的父类的构造函数的方法,不能用吗 LoginView.super(this);这是在教学视频里用的方法,好像不能用了。 这些layaair中特别的语法规则在哪里统一可以找到 var LoginView = function () { LoginView.super(this); t...
来源: Laya_社区 发布时间: 20170317
.../SceneScoreNum.png", 123); fontLable.x = pt_src.x; fontLable.y = pt_src.y; this.addChild(fontLable); 2018-04-14 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 w1114367261 赞同来自: xiong /** * 字体...
来源: Laya_社区 发布时间: 20180414
Sprite的destroy destroyChildren() { if (this._children) { for (var i = 0, n = this._children.length; i < n; i++) { this._children[0].destroy(true); } } 这几行代码来自laya.core.js的12544行开始的,for循环里的this._children[0]是不是应该是this._children[i]?还是我的使用...
来源: Laya_社区 发布时间: 20200421
...I页面上的元素列表,不通过var名称一个个获取。如as里有this.numChildren,然后用for可以一个个循环出来。那我在Js里有var indexView = new IndexUI(), indexView.numChildren或者indexView.childs,有这样类似的使用吗? 2017-08-21 添加评论 免费帖 --> ...
来源: Laya_社区 发布时间: 20170821
...供的名为changeText的方法可以直接跳过排版。 ```typescript this.text.text="text"; Laya.stage.addChild(this.text); //后面只是更新文字内容,使用changeText能提高性能 this.text.changeText("text changed."); ``` Text.changeText会直接修改绘图指令中该文本绘制...
来源: Laya2.0_文档 发布时间: 20210714
...ap; private sp:Laya.Sprite; constructor(){ console.info("start"); this.init(); } init():void{ Laya.init(800, 700, Laya.WebGL); Laya.loader.load("res/atlas/images.atlas",Laya.Handler.create(this,this.onLoaded),null,Laya.Loader.ATLAS); } onLoaded(){ console.info("onLoaded"); th...
来源: Laya_社区 发布时间: 20171125
Sprite loadImage 的时候出现多张图片同时显示 this.img.graphics.clear(); var imgUrl = (this.flag = !this.flag)? this.imgUrl1 :this.imgUrl2; this.img.loadImage(imgUrl,100,50); 简单的点击sprite切换图片,结果会出现两张图片同时显示的情况 附件 : --> 2018-04-04 添...
来源: Laya_社区 发布时间: 20180404
...g", type:Loader.IMAGE}); Laya.loader.load(assets, Handler.create(this, loadMapBGComplete)); function loadMapBGComplete():void{ var tx:Texture = Laya.loader.getRes("map/157.jpg"); this._test.source = tx; } 我这张图是913X1400没有打成图...
来源: Laya_社区 发布时间: 20170411