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

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

131. 版本号:2.0.2 beta, 在sound文件夹下音乐播放不了,放入到res文件夹下可播放 [ 66%]

... = soundButton.y; Laya.stage.addChild(musicButton);  soundButton.on(Event.CLICK, this, this.onPlaySound); musicButton.on(Event.CLICK, this, this.onPlayMusic); }  private createButton(label: string): Sprite { var w: number = 110; var h: number = 40;  var button: Sprite = new Sprite(); button.size(...

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

132. 绘制形状时事件不触发 [ 66%]

...;#ff0000"); box.hitArea = area; box.mouseEnabled = true; box.on("click", this, onBoxClick); autoSize可以自动计算宽高,但是由于该方法的计算量比较大,会导致性能问题,开发者可以直接去调,但请适当使用,掉了autoSize就不需要设置size...

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

133. ts如何调用js函数? [ 66%]

...pbox(options); } reader.readAsDataURL(this.files[0]); }) $('#btnCrop').on('click', function(){ var img = cropper.getDataURL(); //$('.cropped').append('<img src="'+img+'">'); }) } 如果直接在ts里面写,报错,那么如果放在js里面。。如何通过ts调用呢?? 2018-01-01 添...

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

134. LAYAAIR加载SWF无线循环 [ 66%]

...000;             mc.height=700;             mc.on("click", this, onAniClick);                 trace("mcwidth:"+mc.width+"mcheight:"+mc.height);                      //  mc.on(Event.LOADED,this,onComp);         //  mc.on(Event.COM...

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

135. tween有这个一个bug [ 66%]

...hare.y = this.Move2d.y; this.SceneMajor.addChild(share); share.btShare.on('click',this,function(){ // Laya.SoundManager.playSound(SfxPool.btPress, 1, null); this.SceneShareDark(); }); share.btSignUp.on('click',this, SignUp_Func); var timeLine = new Laya.TimeLine(); timeLine.addLabel("ZoomIn",0).to(s...

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

136. Laya.stage.mouseEnabled = false;设置之后不生效,还是可以接收鼠标事件 [ 66%]

...关注: 3 人 yyqx1122 • 2018-04-17 10:51 代码如下: Laya.stage.on('click', this, function(){ console.log('click'); Laya.stage.mouseEnabled = false; }) 我给Laya.stage绑定了鼠标事件,然后我将Laya.stage.mouseEnabled手动设置为false,这个时候Laya.stage应该是不接收鼠...

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

137. app 上使用 soundchannel.pause() 暂停音效音乐,用 resume() 播放都会从头开始播放 [ 66%]

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

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

138. l龙骨动画内存上升 [ 66%]

... Laya.stage.bgColor = "#ffffff";             Laya.stage.on(Event.CLICK, this, play);         }                  function play():void {             Laya.timer.loop(5000, this, function():void {                 playDragonBonesAnimation("BigAward/BigAwar...

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

139. 绘制图形的BUG [ 65%]

...里必须手动设置尺寸,才能生效 _sprite.size(200,200); on(Event.CLICK,this,function():void{ trace("click"); }); } override public function get width():Number{ return _sprite.width; } override public function get height():Number{ return _sprite.height; } } } 2017-01-24 1 条评论 免费...

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

140. UI编辑器里按钮事件 onClick怎么使用 [ 64%]

UI编辑器里按钮事件 onClick怎么使用 UI编辑器里按钮事件 onClick怎么使用? 我在onClick框里填 "toLogin",toLogin是一个续承于该页面相对应生成的View类的子类里的一个function。 在我实际运行时一点击该按钮,就报出 "toLogin is not defined"  ...

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