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

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

61. Sprite-切换纹理 [ 76%]

... 2, Laya.stage.height / 2); // 显示默认纹理 switchTexture(); ape.on("click", this, switchTexture); } function switchTexture() { var textureUrl = (flag = !flag) ? texture1 : texture2; // 更换纹理 ape.graphics.clear(); var texture = Laya.loader.getRes(textureUrl); ape.graphics.drawTexture(te...

来源: Laya_示例 发布时间: 20241117

62. 全屏请求问题!!!求救啊!!求救啊!! [ 76%]

...!!!求救啊!!求救啊!! this.fullScreen_btn.on(Laya.Event.CLICK, this, this.onFullScreen, null); _proto.onFullScreen = function () { toggleFullscreen(); };       function launchIntoFullscreen(element) { var element = document.documentElement; if (element.requestFullscreen) { ele...

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

63. 关于list里注册事件和移除事件 [ 76%]

...Laya.Button = cell.getChildByName("btn") as Laya.Button; btn.on(Laya.Event.CLICK, this, this.on_test); } 附件 : --> list.png 2018-08-10 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 Laya_Aaron 赞同来自: 数...

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

64. radioGroup设置labels后,每个radio的icon皮肤无法显示了 [ 75%]

...og.popup();          dialog.btn_question_dialog_next.on(Laya.Event.CLICK, this, onNext); dialog.radioGroup_question.labels = "如果资源未加载,则先加载资源,\n加载完成后应用于此对象。,"+"如果资源未加载,则先加载资源,\n加载完成后应用于此对...

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

65. cavans上触发不了input的点击事件 [ 75%]

...一个sprite,给sprite添加一个点击事件,this.hitimg.on(Laya.Event.CLICK,this,this.onStart); onStart: _proto.onStart = function(){ console.log(111111122222); $("#fileInput").trigger('click'); } 可以打印数字,但是触发不了input控件。 <input id="fileInput" type="file" acc...

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

66. 获取的ui页面里下on事件无法触发 [ 75%]

...rtView = function () { GameStartView.super(this); this.Start.on(Laya.Event.CLICK, this, this.open); console.log(this.Start); GameStartView.prototype.open = function(){ console.log("Open is ok"); } }; Laya.class(GameStartView,"GameStartView", GameStartUI); 输出:Button {toggle: false, _bitmap: Aut...

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

67. 精灵添加名称 [ 75%]

...= project.drawsomething(20, 20+60*i, "#eeb9b3");         sp.on(Event.CLICK,this, onsp);         Laya.stage.addChild(sp);   }   private function onsp(e:Event){              console.log("监听到按钮"+e.target);              console.log((e.target.getChildAt(0) as Sprite...

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

68. 2D物理-仿生机器人 [ 75%]

...e(revoluteJoint); } eventListener() { Laya.Laya.stage.on(Laya.Event.DOUBLE_CLICK, this, () => { this.motorJoint.motorSpeed = -this.motorJoint.motorSpeed; }); Laya.Laya.stage.on(Laya.Event.CLICK, this, () => { const chassisBody = this.chassis.getComponent(Laya.RigidBody); const chassisPos = chassisBo...

来源: Laya2.0_示例 发布时间: 20241117

69. 声音播放问题 native下采用Audio播放导致声音每次都是从头播放 [ 75%]

...    let _pause:boolean = false;         btn1.on(Laya.Event.CLICK,this,()=>{             if(!_pause)return;             sound.pause();             _pause = false         })         btn2.on(Laya.Event.CLICK,this,()=>{     ...

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

70. 请问:Ts下如何实现打开照相机和系统图库的方法?IOS和Android [ 75%]

...  Laya.stage.addChild(button);         button.on(laya.events.Event.CLICK,this,function () {             let photo = laya.utils.Browser.getElementById("photo");            photo.click();         });     } } new GameMain(); 为什么 click事件没有响应? ...

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