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

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

761. laya的摇一摇发布到微信小游戏上无效 [ 56%]

...微信小游戏上无效 Shake.instance.start(5, 500); Shake.instance.on(Event.CHANGE, this, onShake); private function onShake():void { console.log("摇晃了!!!!"); }这段代码发布到微信小游戏上并无效果 请问是什么原因呢 2018-07-26 添加评论 免费帖 --> 分享 ...

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

762. laya.ui.View 扩展 [ 56%]

...  什么扩展laya.ui.View,比如:我需要添加 Laya.stage.on(Laya.Event.RESIZE, this, this.windowResize); 调整我的view 的位置 2017-08-05 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 3 个回复 cuixueying ...

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

763. 微信小游戏加载资源问题 [ 56%]

...completeHandler], false); this.completeHandler = null; } this.stop(); this.event(Laya.Event.COMPLETE); return; } if (this.loops > 0) { this.loops--; } this.startTime = 0; this.play(); } play() { this.isStopped = false; Laya.SoundManager.addChannel(this); this._audio.play(); } set startTime(time) ...

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

764. 在浏览器里打开游戏退出时游戏会执行什么? [ 56%]

在浏览器里打开游戏退出时游戏会执行什么? this.on(Laya.Event.REMOVED,this,this.releaseUp); 我之前执行过这个方法。。但是这个方法必须是当前界面销毁或者移除的时候才执行。。如果在浏览器里,我点关闭或者手机上点返回。。那这...

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

765. laya.device.Shake [ 56%]

...ties | Methods Packagelaya.deviceClasspublic class ShakeInheritanceShake EventDispatcher Object Shake只能在支持此操作的设备上有效。 Public Properties PropertyDefined By  instance : Shake[static] [read-only] ShakePublic Methods Hide Inherited Public Methods Show Inherited Public M...

来源: laya_api 发布时间: 20170929

766. 初学者的提问,如何在场景中获取到对象 [ 56%]

...         this.btn = this.owner;         this.btn.on(Laya.Event.CLICK,this,this.cli)                    }         cli(){         /// how to 获得text 对象,并改变text的值???     } 2020-04-12 添加评论 免费帖 --> 分享 微...

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

767. dialog 遮挡 [ 56%]

...); createDialog("444",400,400); createDialog("555",500,500); Laya.stage.on(Event.CLICK,this,onClick); } private function onClick():void { alert(Dialog.manager.numChildren+"");//manager是DialogManager的实例,创建多少个dialog,manager下就有多少的子对象 var dia:Dialog=Dialog.manager...

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

768. 关于spine资源加载以及创建Laya.Templet问题 [ 56%]

...m:Laya.Templet = new Laya.Templet(); tm.loadAni("res/imgs.sk"); tm.on(Laya.Event.COMPLETE, this,()=>{       //是不是只能在这里面创建动画,这里创建,那我如何全局使用????????       var skp = this.buildArmature(1);       skp.showSkinByIndex(1); }) ...

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

769. 【简单跑酷--JS版】---Lv.6 终篇 [ 56%]

...is.addChild(this.player); //监听 按下 弹起 事件 Laya.stage.on(laya.events.Event.MOUSE_DOWN, this, this.onMouseDown); Laya.stage.on(laya.events.Event.MOUSE_UP, this, this.onMouseUp); //创建一个帧循环处理函数 Laya.timer.frameLoop(1, this, this.onLoop); } _proto.onLoop = function(){ ...

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

770. 关于3D动画的ani监听播放完毕后,播放默认动画不行 [ 56%]

...的ani监听播放完毕后,播放默认动画不行 this.mAni.on(Laya.Event.COMPLETE,this,this.aniComplete); this.mAni.play("free") aniComplete(type:number):void {    this.mAni.play("ready"); }   播放完指定动画后,这个回调不执行。   附件 : --> pkwang3D.rar 2017-11-16 添加...

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