• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 430 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0059 秒)

261. 动态阴影被切割了?为啥没有显示完成的阴影 [ 53%]

...REEN_NONE; //开启统计信息 Laya.Stat.show(); Laya.stage.on(Laya.Event.CLICK, this, mouseHandler); //添加3D场景 var scene = Laya.stage.addChild(new Laya.Scene()); function LayaAir3D() { //添加照相机 var camera = (scene.addChild(new Laya.Camera()));//0, 0.3, 100 camera.transform.translat...

来源: Laya_社区 发布时间: 20180402

262. 新人求教!!! [ 53%]

...击事件,触发后执行switchImg切换纹理绘制    this.img.on("click",this,this.switchImg);    //设置图片坐标    this.img.pos(100,50); } private switchImg():void{   //清空绘制   this.img.graphics.clear();   //获得要切换的图片资源路径   var imgUrl:String = (thi...

来源: Laya_社区 发布时间: 20180226

263. [LayaAir2]在使用videoDom创建视频元素后iPad跟iPhone中位置不一样 [ 53%]

...eoDom { htmlvideo:Laya.HtmlVideo; constructor() { Laya.stage.on(Laya.Event.CLICK,this,this.onClick); } onClick(){ this.initVideo(); } initVideo() { this.htmlvideo = new Laya.HtmlVideo(); this.htmlvideo.setSource("https://www.layaair.com/3.x/de ... ot%3B,1); this.htmlvideo.video.addEventListener("loa...

来源: Laya_社区 发布时间: 20240305

264. iphoneX 用微信打开游戏,,做新手引导 抠图有问题,,, [ 53%]

..."bitmap"; Laya.stage.addChild(this.guideContainer); this.gameContainer.on("click", this, this.nextStep); //绘制遮罩区,含透明度,可见游戏背景 this.maskArea = new Sprite(); this.maskArea.alpha = maskAlpha; this.maskArea.graphics.drawRect(0, 0, Laya.stage.width, Laya.stage.height, mas...

来源: Laya_社区 发布时间: 20180116

265. 阻止点击穿透问题 [ 53%]

...。 代码如下:  骰子的点击事件代码: this.items.shaizi.on("click", this, function(e) { e.stopPropagation(); if(!Game.runing) { Game.runing = true; Game.stepNum = Math.floor(Math.random() * 6) + 1; console.log(Game.stepNum) Animate.role(Game.stepNum); } },[this.items.shaizi]);  弹...

来源: Laya_社区 发布时间: 20180601

266. Laya List给子元素添加事件后,滚动事件被劫持了 [ 53%]

...; list.loadImage('xxx.png'); //此处无论是这样给 list.on(Laya.Event.CLICK, this, () => { console.log(413132131) }) //还是在handler中去渲染,都会滚动不了 txArray.push(list);} storeTxList.array = txArray;   Laya.stage.addChild(storeTxList);     悬赏找大神看问题 expor...

来源: Laya_社区 发布时间: 20190711

267. list中加的button不能接收点击事件 求一个list中加button的demo [ 52%]

...       console.log("3333333333333");         if (cell.useBtn.clickHandler == undefined) {             cell.useBtn.on("click", this, this.onItemUse, [index]);         }     }     onItemUse(index):void{         console.log("11111111111111111");     }   ...

来源: Laya_社区 发布时间: 20170310

268. 显示对象的mask缩放为0时遮罩效果不生效 [ 52%]

...Child(testSp); let i = 0; tmpMask.scaleX = i / 3; Laya.stage.on(Laya.Event.CLICK, this, ()=>{ i = (i + 1) % 4; tmpMask.scaleX = i / 3; }); 附件 : --> 2020-04-21 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 3 个回复 ...

来源: Laya_社区 发布时间: 20200421

269. ls场景文件通过Laya.loader.create()预加载后stage.destroyChildren()出现异常Cannot read property 'visible' of null [ 52%]

...附Demo。   想做不同场景之间的切换。 spriteBtn.on(Laya.Event.CLICK, this, function (e) { Laya.stage.destroyChildren(); newScene(); });问题:LayaAirUnityPlugin 1.1.0导出了 ls 场景文件,在通过Laya.loader.create()预加载后。在3次Laya.Scene.load()后,最后一次 Laya...

来源: Laya_社区 发布时间: 20170615

270. 插件开发说明 · LayaAir3.0文档 · LAYABOX [ 52%]

...ector: "Buttons", options : { buttons : [ { caption : "点我", event: "my_click" } ] } } ] } ]); this._panel.allowUndo = true; //根据需要设置 //如果不需要undo功能,也可以直接this._data = {}; this._data = IEditor.DataWatcher.watch({}); //inspect可以多次调用,将多个数据...

来源: Laya3.0_文档 发布时间: 20241014