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

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

261. laya.d3.core.scene.VRScene [ 51%]

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

来源: laya_api 发布时间: 20170422

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

...dler = 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

263. laya.ui.VSlider [ 51%]

...显示在屏幕之前调用,一般用于延迟计算数据。 Node clearTimer(caller:*, method:Function):void 清理定时器。功能同Laya.timer.clearTimer()。 Node contains(node:Node):Boolean 当前容器是否包含指定的 Node 节点对象 。 Node customRender(context:Context, x:Numbe...

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

264. laya.ui.ViewStack_API3.0 [ 51%]

...ectedIndex selection setIndexHandler skewX skewY stage staticCache texture timer toolTip top transform url viewport visible width x y zOrder Methods _initialize _processActive addChild addChildAt addChildren addComponent addComponentInstance addItem bubbleEvent callLater clearTimer contains customRe...

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

265. 射线检测-选取物体 [ 51%]

...der.mesh = capsule.meshFilter.sharedMesh; capsule.name = "胶囊体"; Laya.timer.frameLoop(1, this, checkHit); var ray = new Laya.Ray(new Laya.Vector3(0, 0, 0), new Laya.Vector3(0, 0, 0)); var point = new Laya.Vector2(); var _outHitAllInfo = new Array(); function checkHit() { //从屏幕空间生成...

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

266. laya.ui.HSlider [ 51%]

...显示在屏幕之前调用,一般用于延迟计算数据。 Node clearTimer(caller:*, method:Function):void 清理定时器。功能同Laya.timer.clearTimer()。 Node contains(node:Node):Boolean 当前容器是否包含指定的 Node 节点对象 。 Node customRender(context:Context, x:Numbe...

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

267. laya.ui.VBox_API3.0 [ 51%]

...scaleX scaleY scene scrollRect skewX skewY space stage staticCache texture timer toolTip top transform url viewport visible width x y zOrder Methods _initialize _processActive _setWidth addChild addChildAt addChildren addComponent addComponentInstance bubbleEvent callLater clearTimer contains custom...

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

268. 问一下这个问题要怎么改啊? [ 51%]

...已经无效) 关于逻辑贞更新间隔机制、时间和其他一些Timer相关的问题 问题状态 最新活动: 2017-05-22 18:18 浏览: 834 关注: 2 人 cuixueying • 2017-05-22 20:40 要不,你把你可以运行但是报错的例子发我下,我来测试下吧! anlijames • 2017-...

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

269. iOS环境浏览器使用mask黑屏 [ 51%]

...phics.clear(); this._sp.graphics.drawCircle(100, 100, 50, '#ffffff'); Laya.timer.once(3000, this, () => { this.img.mask = this._sp; }) }之后编译项目 2. 使用iphone手机的safari扫码功能运行项目 3秒中之后必现黑屏 手机型号: iphone 6s 系统 13.1.3 使用qq浏览器扫...

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

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

...eHandler = 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 ...

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