大约有 485 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0041 秒)
...Laya.stage.ALIGN_MIDDLE; Laya.stage.screenMode = Laya.stage.SCREEN_NODE;*/ this.tMap = new Laya.TiledMap(); var viewRect = new Laya.Rectangle(0,0,W,H); this.tMap.createMap("../bin/res/TileMap/orthogonal.json",viewRect); } Start(); 附件 : --> 2018-09-15 添加评论 免费帖 --> 分享 微博 Q...
来源: Laya_社区 发布时间: 20180915
...2,在场景中加入了鼠标点击事件 Laya.stage.on(Event.MOUSE_DOWN,this,sceneClick); private function sceneClick():void { trace("scene clicked"); } 3,在button上添加按钮功能 button.on(Event.CLICK,this,onBtn); private function onBtn(e:Event):void { e.stopPropagation(...
来源: Laya_社区 发布时间: 20180917
...prite3D.load("./test.lh")); qb_pet.once(Laya.Event.HIERARCHY_LOADED, this, function(){ qb_pet.addComponent(Laya.SphereCollider); }); 设置射线: Laya.timer.frameLoop(1, null, checkHit); var hit = new Laya.RaycastHit(); var point = new Laya.Vector2(); ...
来源: Laya_社区 发布时间: 20170915
...直接使用页面定义的属性(通过IDE内var属性定义),比如this.tipLbll,this.scoreLbl,具有代码提示效果 * 建议:如果是页面级的逻辑,需要频繁访问页面内多个元素,使用继承式写法,如果是独立小模块,功能单一,建议用脚本方...
来源: Laya_社区 发布时间: 20190426
...集,实现遮罩效果 里边的示例运行报错 Uncaught TypeError: this.setTo is not a function(function () { const Loader = Laya.Loader const Handler = Laya.Handler (function () { Laya.init(1136,640) Laya.stage.bgColor="#fff" Laya.loader.load('./../bin/res/atlas/res.atlas', Handler.create(th...
来源: Laya_社区 发布时间: 20180810
... The requested URL /download/LayaAirIDE_1.7.10_beta.zip was not found on this server. The requested URL /download/LayaAirTS_1.7.10_beta.zip was not found on this server. 麻煩提供檔案到外網,好讓其他開發者下載。 2017-08-29 添加评论 免费帖 --> 分享 微博 QZONE 微...
来源: Laya_社区 发布时间: 20170829
...自: 按照例子里面: // 侦听加载失败 Laya.loader.on(Event.ERROR, this, this.onError); 实际上是把事件注册到LoaderManager上了 但是实际上加载失败了以后,事件触发的是loader 这个问题我记得之前有个同学问的加载线程最大时错误无法通...
来源: Laya_社区 发布时间: 20170711
...}; constructor(){ super()} createChildren():void { super.createChildren(); this.createView(HelloUI.uiView); } } REG("ui.HelloUI",HelloUI); } 附件 : --> TestDemo.zip 2019-06-25 2 条评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 0...
来源: Laya_社区 发布时间: 20190625
... var handler : laya.utils.Handler = laya.utils.Handler.create(this, this.onGetStartScene); GameConfig.startScene && Laya.Scene.open(GameConfig.startScene, true, null, handler ); // open的返回值是void,所以不能通过open的返回值拿到 } o...
来源: Laya_社区 发布时间: 20181206
...ar shelf0 = Laya.Sprite3D.load("DoorShelf/shelf.lh"); this.scene.addChild(shelf0); shelf0.transform.translate(new Laya.Vector3(-4,1.2,35)); var shelf3 = Laya.Sprite3D.load("DoorShelf/shelf.lh"); this.scene.addChild(s...
来源: Laya_社区 发布时间: 20180301