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

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

341. ProgressBar属性详解(JavaScript-IDE篇(JS)-IDE组件属性详解) [ 50%]

... new Handler(this, onChange); Laya.stage.addChild(progressBar); Laya.timer.loop(100, this, changeValue); } function changeValue() { if (progressBar.value >= 1) progressBar.value = 0; progressBar.value += 0.05; } function onChange(value) { console.log("进度:" + Math.floor(value * 100) + "%"); } }...

来源: Laya2.0_文档 发布时间: 20210715

342. laya.display.EffectAnimation [ 50%]

...se isPlaying : Boolean[read-only] 是否正在播放中。 AnimationBase loop : Boolean是否循环播放,调用play(...)方法时,会将此值设置为指定的参数值。AnimationBase mask : Sprite 遮罩,可以设置一个对象(支持位图和矢量图),根据对象形状进行遮罩...

来源: Laya2.0_api 发布时间: 20190513

343. iPhone6 ios 8.3系统 最新的QQ 锁屏再解锁 游戏闪退 [ 50%]

...小至后台事件:"+(!e.hidden ? "前置显示":"后台隐藏")); isStopLoop = e.hidden; if (e.hidden) { _isVisibility = false; if (_this._isInputting()) Input["inputElement"].target.focus = false; } else { _isVisibility = true; } _this.event(Event.VISIBILITY_CHANGE); });     public static var is...

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

344. timer无法执行 [ 50%]

...(); //加载地面 this.loadGround(); //加载墙面 this.loadwall(); this.loopShoot(); } public loopShoot(): void{ Laya.timer.loop(1000, this, this.shootBall); }   public shootBall(): void{ //生成空中降落的球 //var random: number = Math.random()*24-7; let ball: Laya.MeshSprite3D = new Laya...

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

345. 【3D动画播放】 关于islooping覆盖问题,想请教一下 [ 49%]

LayaAir IDE 【3D动画播放】 关于islooping覆盖问题,想请教一下 目前存在疑惑: islooping 写一个会影响所有。     问题:描述     一个 person.lh 文件,克隆出来的十个person。分别各自获取到自己的身上的Animator,然后剪辑动画,run...

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

346. 请问怎么制作一个layabox js版本的加载效果 [ 49%]

...er = new Handler(this, null); Laya.stage.addChild(progressBar); Laya.timer.loop(300, this, changeValue); } function changeValue() { if (progressBar.value >= 1){ progressBar.value = 0; Laya.stage.removeSelf(); //将登录页面从内存销毁 // Laya.stage.destroy(); Laya.stage.addChild(new gameli...

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

347. 显卡驱动停止响应,且大概率蓝屏,原来是Handler惹的祸,但原因是什么 [ 49%]

...显示,请问有知道是什么原因的吗?~~~~~~~~~~~~~ Laya.timer.loop()如何停止 Laya拖尾怎么停止或清除,比如要瞬移角色的时候停止。伤脑壳~~!! 求教: soundManager如何停止正在播放的背景音乐 用Laya.stage.addChild(new testUI());后,原来让页...

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

348. H5小游戏,IOS平台退到后台,长时间返回画面卡顿或者直接卡死! [ 49%]

...! 先不吐槽这个。 真正的问题在于,对于不跳帧的timer.loop(),那么它将在切后台再切回来后被执行很多很多...次。这就是造成切后台返回前台卡顿的原因,而且,切后台时间越长,卡顿也就越久。 解决办法?限制不跳帧执行的...

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

349. win10的系统,没有安装杀毒软件,也没有设置兼容模式,直接解压后打开窗口报错,说是窗口出现故障,请重启该窗口从上次停止的位置继续。有没有什么解决方法。 [ 49%]

...会生成场景类了,此时该如何获得场景内的元素 Laya.timer.loop()如何停止 Laya2.6.0beta 物理引擎 刚体碰撞点位置获取不正确 ios14系统下 blendMode='lighter' 图片异常 Laya2.0 WebGl模式,使用 drawToCanvas 报错 ImageData is not defined? 求教: soundMana...

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

350. Laya2.0绘制扇形遮罩,显示到部分角度时显示会有部分缺失(demo已上传) [ 49%]

... sp2.pos(300, 500); Laya.stage.addChild(sp2); let r: number = 0 Laya.timer.loop(100, this, () => { if (r >= 360) r = 0; r++; sp.graphics.clear(true); sp.graphics.drawPie(0, 0, 50, 0, r, "#00ff1e"); sp2.graphics.clear(true); sp2.graphics.drawPie(0, 0, 50, 0, r, "#00ff1e"); }) 附件 : --> test....

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