大约有 461 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0040 秒)
Laya_社区(367) Laya3.0_api(21) Laya2.0_文档(21) laya_api(14) Laya2.0_api(14) Laya3.0_文档(13) Laya_示例(6) Laya2.0_示例(5)
... 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
...se isPlaying : Boolean[read-only] 是否正在播放中。 AnimationBase loop : Boolean是否循环播放,调用play(...)方法时,会将此值设置为指定的参数值。AnimationBase mask : Sprite 遮罩,可以设置一个对象(支持位图和矢量图),根据对象形状进行遮罩...
来源: Laya2.0_api 发布时间: 20190513
...小至后台事件:"+(!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
...(); //加载地面 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
LayaAir IDE 【3D动画播放】 关于islooping覆盖问题,想请教一下 目前存在疑惑: islooping 写一个会影响所有。 问题:描述 一个 person.lh 文件,克隆出来的十个person。分别各自获取到自己的身上的Animator,然后剪辑动画,run...
来源: Laya_社区 发布时间: 20191101
...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
...显示,请问有知道是什么原因的吗?~~~~~~~~~~~~~ Laya.timer.loop()如何停止 Laya拖尾怎么停止或清除,比如要瞬移角色的时候停止。伤脑壳~~!! 求教: soundManager如何停止正在播放的背景音乐 用Laya.stage.addChild(new testUI());后,原来让页...
来源: Laya_社区 发布时间: 20170330
...! 先不吐槽这个。 真正的问题在于,对于不跳帧的timer.loop(),那么它将在切后台再切回来后被执行很多很多...次。这就是造成切后台返回前台卡顿的原因,而且,切后台时间越长,卡顿也就越久。 解决办法?限制不跳帧执行的...
来源: Laya_社区 发布时间: 20180411
...会生成场景类了,此时该如何获得场景内的元素 Laya.timer.loop()如何停止 Laya2.6.0beta 物理引擎 刚体碰撞点位置获取不正确 ios14系统下 blendMode='lighter' 图片异常 Laya2.0 WebGl模式,使用 drawToCanvas 报错 ImageData is not defined? 求教: soundMana...
来源: Laya_社区 发布时间: 20170628
... 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