大约有 221 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0038 秒)
... this.loadFont(); } loadFont() { const BitmapFont = Laya.BitmapFont, Handler = Laya.Handler; Laya.loader.load([{ url: ['res/bitmapFont/test.fnt'], type: Laya.Loader.FONT }], Handler.create(this, () => { console.log('bitmapFont loaded'); ...
来源: Laya_社区 发布时间: 20190221
... i of this.playerUnit ){ i.loadAtlas("./character/m1.atlas",Laya.Handler.create(this,this.playerUnitLoaded)); } for(let i of this.enemyUnit){ i.loadAtlas("./character/m1.atlas",Laya.Handler.create(this,this.enemyUnitLoaded)); } } playerUnitLoaded(){ for(let i in this.playerUnit){...
来源: Laya_社区 发布时间: 20200910
...必须要有这一段代码吗 Laya.loader.load("res/atlas/ui.atlas",Laya.Handler.create(this,this.onLoaded)); 2017-09-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Monica - 知识达人 赞同来自: 这行...
来源: Laya_社区 发布时间: 20170925
...prite; import laya.ui.Button; import laya.utils.Browser; import laya.utils.Handler; public class Main { public function Main() { //初始化引擎 Laya.init(500,500);//初始化引擎 var skins:Array = [ "res/button-1.png" ]; Laya.loader.load(skins, Handler.create(this, onUIAssetsLoaded)); } public ...
来源: Laya_社区 发布时间: 20180529
...值? private jsonParse() { Laya.loader.load("res/atlas/resTest0.json", Handler.create(this, this.onLoaded), null, Loader.JSON); } private onLoaded() { var json : JSON = Laya.Loader.getRes("res/atlas/resTest0.json"); var jsTx = JSON.stringify(json); } 已经通过上面代码获取整个json内容...
来源: Laya_社区 发布时间: 20171016
... Laya.Ease.bounceOut, Laya.Handler.create(this, this.beUpgrade) );}使用上面代码对龙骨每2000毫秒做scale缓动动画,挂机一段时间,动画没反应了,龙骨是scale之后的状态。 2020-07-16 添加评论 免费...
来源: Laya_社区 发布时间: 20200716
.../monster/monsterA/move.atlas" ]; Laya.loader.load(aniArr, Handler.create(this, onAni), null, Loader.ATLAS); private function onAni():void { var role:SimpleRole = new SimpleRole(); Laya.stage.addChild(role); } SimpleRole类: public function SimpleRole() ...
来源: Laya_社区 发布时间: 20170619
... var Texture = Laya.Texture; var Browser = Laya.Browser; var Handler = Laya.Handler; var WebGL = Laya.WebGL; (function() { // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); ...
来源: Laya_社区 发布时间: 20171201
JS中List容器里renderHandler和itemHandler渲染器如何使用 JS中List容器里renderHandler和itemHandler渲染器如何使用 2017-08-08 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 cry_11858 赞同来...
来源: Laya_社区 发布时间: 20170808
...10:59 //加载图集 Laya.loader.load("res/atlas/hero.json",Laya.Handler.create(this,onLoaded),null,Laya.Loader.ATLAS) //先把四张小图拿出来 var hero_down1=Laya.loader.getRes("hero/hero_down1.jpg"); var hero_down2=Laya.loader.getRes("hero/hero_down2.jpg"); var h...
来源: Laya_社区 发布时间: 20170330