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

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

231. UI-ProgressBar [ 72%]

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

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

232. Laya.Point替代了laya.maths.Point [ 72%]

...tes方法,在laya有替代的方法吗 在加载3d人物的时候,Laya.timer.loop会卡顿,由于又需要每隔一段时间执行一个方法,暂时想到了用Laya.timer.loop,这个有什么好的解决方案替代吗? 动效播放直接到最后一帧,有替代方案么 flash中的R...

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

233. 关于玩一玩 内matter.js物理引擎内无法正常运行 的解决办法 [ 72%]

...setTimeout 在qq玩一玩环境内是无法使用的,可以用BK.Dir... .timer或者改用Laya.timer 既可解决 2018-12-12 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Laya_Aaron 赞同来自: 感谢分享~...

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

234. laya.d3.core.SkinnedMeshSprite3D_API3.0 [ 72%]

...lags id is3D layer meshFilter numChildren parent scene skinnedMeshRenderer timer transform url Methods _initialize _processActive addChild addChildAt addChildren addComponent addComponentInstance bubbleEvent callLater clearTimer clone contains destroy destroyChildren event frameLoop frameOnce getChi...

来源: Laya3.0_api 发布时间: 20231115

235. laya.d3.core.trail.TrailSprite3D_API3.0 [ 72%]

...estroyed displayedInStage hideFlags id is3D layer numChildren parent scene timer trailFilter trailRenderer transform url Methods _initialize _processActive addChild addChildAt addChildren addComponent addComponentInstance bubbleEvent callLater clear clearTimer clone contains destroy destroyChildren ...

来源: Laya3.0_api 发布时间: 20231115

236. 游戏长时间运行掉帧的问题 [ 72%]

...01-29 09:41 问题已解决,是因为开发中遗留下来的问题,在timer函数中创建局部 timer导致的

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

237. Sprite-节点控制 [ 72%]

...一只猩猩的子级 Laya.stage.addChild(ape1); ape1.addChild(ape2); Laya.timer.frameLoop(1, this, animate); } function animate(e) { ape1.rotation += 2; ape2.rotation -= 4; } })();module laya { import Sprite = Laya.Sprite; import Stage = Laya.Stage; import Event = Laya.Event; import Browser = Laya....

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

238. 2D物理-复合碰撞器 [ 72%]

...oint.enableMotor = true; box.addComponentIntance(revoluteJoint); Laya.Laya.timer.frameLoop(1, this, this.addMiniBox); } addMiniBox() { let box = this.box; if (this.count >= this.totalBox) { return; } let sp = new Laya.Sprite(); Laya.Laya.stage.addChild(sp); sp.x = box.x; sp.y = box.y; sp.addComponen...

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

239. laya.map.GridSprite [ 72%]

...被清除掉)。等同于graphics.clear();graphics.drawTexture()Sprite timer : Timer时间控制器,默认为Laya.timer。Node transform : Matrix 对象的矩阵信息。通过设置矩阵可以实现节点旋转,缩放,位移效果。 矩阵更多信息请参考 Matrix Sprite viewport : ...

来源: laya_api 发布时间: 20170929

240. 长按更新UI [ 71%]

...新(2021.3.8) 关于逻辑贞更新间隔机制、时间和其他一些Timer相关的问题 dcc更新失效, 有代码, 100%复现, 三楼附临时解决办法 热更新有时候会漏掉或者没有正确加载某个js代码文件,导致游戏在运行中因找不到这个文件而报错了...

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